I am trying to set a condition in a macro based on whether a check box is a form is checked or not. This is my condition:
IsEmpty([Forms]![frm_Build_ARMS]![Check8])=False
I've also tried:
IsNull([Forms]![frm_Build_ARMS]![Check8])=False
Currently, I am just having it display a MsgBox if the condition is met. However, the MsgBox is displayed regardless of whether the check box is checked or not in the form.
Can anyone help?
IsEmpty([Forms]![frm_Build_ARMS]![Check8])=False
I've also tried:
IsNull([Forms]![frm_Build_ARMS]![Check8])=False
Currently, I am just having it display a MsgBox if the condition is met. However, the MsgBox is displayed regardless of whether the check box is checked or not in the form.
Can anyone help?