I am trying to add a calculated Textbox to a form for DueDate
The below formula gives a #Type! error
Control Source Formula in DueDate:
Using the name of the textbox
Using the control source
Basically just trying to add 21 days from RecieveDate or Text1186.
Thank you
.
The below formula gives a #Type! error
Control Source Formula in DueDate:
Using the name of the textbox
Code:
=IIf(IsNull([Text1186]+21),0,([Text1186]+21))
Using the control source
Code:
=IIf(IsNull([RecieveDate]+21),0,([RecieveDate]+21))
Basically just trying to add 21 days from RecieveDate or Text1186.
Thank you
Last edited: