R
Ran BD
guys I'm trying to calculate a future date for the end of a lease term, I'm
using 2 parameters that I'm retrieving from the form Lease_Start_Date and
Lease_Period.
as I'm using the dateadd function
(=DateAdd("m",[lease_period],[lease_priod_start_Date]) I'm getting the
appropriate result.
trying to eliminate the null (as default value is =0 before data is entered
into the appropriate fields) I'm using
=IIf(IsNull([Lease_Period]),Null,DateAdd("m",[
Lease_Period],[Lease_Period_Start_Date]))
and I am getting #name? in the text box.
what am I doing wrong.
I've been trying to solve this for the last 2 days and I can't figure out
what's going on in here.
thanks
Ran
using 2 parameters that I'm retrieving from the form Lease_Start_Date and
Lease_Period.
as I'm using the dateadd function
(=DateAdd("m",[lease_period],[lease_priod_start_Date]) I'm getting the
appropriate result.
trying to eliminate the null (as default value is =0 before data is entered
into the appropriate fields) I'm using
=IIf(IsNull([Lease_Period]),Null,DateAdd("m",[
Lease_Period],[Lease_Period_Start_Date]))
and I am getting #name? in the text box.
what am I doing wrong.
I've been trying to solve this for the last 2 days and I can't figure out
what's going on in here.
thanks
Ran