M
mark1
In VBA, how do I select more than one object at the time?
For example the code I have says this:
ActiveSheet.OLEObjects("CheckBox1").Object.Value = 0
What I want to do is something like this:
ActiveSheet.OLEObjects
("CheckBox1,Checkbox2...").Object.Value = 0
For example the code I have says this:
ActiveSheet.OLEObjects("CheckBox1").Object.Value = 0
What I want to do is something like this:
ActiveSheet.OLEObjects
("CheckBox1,Checkbox2...").Object.Value = 0