AFKillbait
Registered User.
- Local time
- Today, 09:09
- Joined
- Aug 8, 2009
- Messages
- 27
Currently I have a due date field that uses the following expression:
I also have a checkbox that makes a date field become visible if checked. I am trying to figure out how to make it so that if the checkbox is checked the due date field will adjust its DateAdd expression to be equal to the date entered into the checkbox date field.
Is this even possible?
Code:
=IIf(IsNull([Training]),"Not Completed",
IIf(DateAdd("m",12,[Training])<Date(),"Overdue",DateAdd("m",12,[Training])))
I also have a checkbox that makes a date field become visible if checked. I am trying to figure out how to make it so that if the checkbox is checked the due date field will adjust its DateAdd expression to be equal to the date entered into the checkbox date field.
Is this even possible?