one Check Box to select all 15Check boxes

dr.bob

Registered User.
Local time
Today, 09:51
Joined
Jan 5, 2006
Messages
11
I have about 15 yes/no check boxes on a form. Is there a way to create another check box that when checked, it will place a check mark in all the other 15 boxes?

Thanks in advance,

Dr. Bob
 
Well basically when that box is clicked (you need to check for checked or unchecked) you just either run a macro or VBA to set all the other boxes, one at a time.
In VBA it would be
Me.MyChkBox1.value = TRUE
Me.MyChkBox2.value = TRUE
Etc.

True checks them, false unchecks them.
 

Users who are viewing this thread

Back
Top Bottom