could someone please help with this code

helloworld

Registered User.
Local time
Today, 10:23
Joined
May 18, 2004
Messages
62
Hi there,


I am trying to make a command button only appear when one or more of the checkboxes are clicked. I put this code in the Before-Update property of all the checkboxes but it is not working. Could someone please help.

If ((Forms!FullCompoundDataElementsReport![Check59] = False) And (Forms!FullCompoundDataElementsReport![Check55] = False) And (Forms!FullCompoundDataElementsReport![Check61] = False) And (Forms!FullCompoundDataElementsReport![Check57] = False) And (Forms!FullCompoundDataElementsReport![Check52] = False)) Then
Command77.Visible = False
Else
Command77.Visible = True
End If

I have 5 checkboxes and I put this code in all of them. any help would be appreciated!
 
Got it

Nevermind...I figured it out. Thanks to anyone who was going to help!
 

Users who are viewing this thread

Back
Top Bottom