On A Form, who's source is a query, the answer does not need to be saved.
I was Trying to make an unbound Text box display one of these 2 Values "On Time" or "Late" based on the value in a third text box.
Text46 =Date() 'Todays Date generated by the system.
rqDelDueOn = 'A Date Entered into the Table by user.
Text44 = 'The place I wanted the value to show. either "On Time" or "Late"
I would prefer to do this in the query and bring it into the form, if possible. Below was my last attempt at the code.
Iff(#[rqDelDueOn]#< or = #[Text46]#,"On Time",Iff(# [rqDelDueOn]# > #[Text46]#,"Late"))
Thanks,Uncle G
I was Trying to make an unbound Text box display one of these 2 Values "On Time" or "Late" based on the value in a third text box.
Text46 =Date() 'Todays Date generated by the system.
rqDelDueOn = 'A Date Entered into the Table by user.
Text44 = 'The place I wanted the value to show. either "On Time" or "Late"
I would prefer to do this in the query and bring it into the form, if possible. Below was my last attempt at the code.
Iff(#[rqDelDueOn]#< or = #[Text46]#,"On Time",Iff(# [rqDelDueOn]# > #[Text46]#,"Late"))
Thanks,Uncle G