Currently I have a due date field that uses the following expression:
=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...