Actually, I am not writing code but using the macro builder thingy. It didn't except the code you suggested. Though after looking at what you did and sleeping on it I figured it out. All I needed was:
[Forms]![frm_Build_ARMS]![Check8]=False
-or-
[Forms]![frm_Build_ARMS]![Check8]=True...
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...