R
Ran BD
=IIf(IsNull([Lease_Period]),Null,DateAdd("m",[ Lease_Period],[
Lease_Period_Start_Date]))
any ideas ?
thanks
Lease_Period_Start_Date]))
any ideas ?
thanks
Wayne Morgan said:There is a space between the [ and the L in the second Lease_Period, but I don't expect
this to be it.
Are the names Lease_Period and Lease_Period_Start_Date the names of fields, controls, or
both? If the answer is both, try changing the names of the controls. For example, if the
name of the control that has Lease_Period as its control source is a textbox, try changing
it to txtLease_Period. Access sometimes gets lost if you have 2 items with the same name.
The name of the control is on the Other tab of the Properties sheet.
--
Wayne Morgan
Ran BD said:=IIf(IsNull([Lease_Period]),Null,DateAdd("m",[ Lease_Period],[
Lease_Period_Start_Date]))
any ideas ?