Is it possible to change the status of a check box ( Client_Status_Active)by entering a date in a date field?
If IsDate(DeathDate) then
Client_Status_Active = False
Endif
Regards,
Bill
Is it possible to change the status of a check box ( Client_Status_Active)by entering a date in a date field?
If IsDate(DeathDate) then
Client_Status_Active = False
Endif
Regards,
Bill
Yes, of course. Have you tried it?
Do you have this field bound to a control on the form? If so then make sure the name of the control is different (chkActive maybe??) then change the code to:
Code:If IsDate(DeathDate) Then Me.chkActive = False Endif
That worked perfectly! Many thanks for your continued help with the issues I am facing.
Regards,
Bill
Glad to help. Don't forget to use the Thread tool and mark this thread as Solved.