Checkbox macro

Rpm1957

Registered User.
Local time
Today, 09:09
Joined
Feb 3, 2012
Messages
19
I have a checkbox on a form which when checked runs a macro, however it also runs the macro when I uncheck it. How can I have it so that the macro only runs when checkbox is checked?
 
Use an If condition to check if the value is True or False. If True run the code else don't do anything.
 

Users who are viewing this thread

Back
Top Bottom