Hi!!! First of all, thanks in advanace for your time and answers.
I dont really know how to manage to make all my checkboxes "true" in one go, due to my code.
I was wondering that maybe with the "GroupName" I could try but I dont know the way
I have three different checkboxes, which are in different sheets:
chkA1, chkA2, ...chkA10 (Sheet1)
chkB1,..............chkB10 (Sheet2)
chkC1,..............chkC10 (Sheet3)
I would like to click all of them in one go. I mean. In my code which is shown a part below this lines, I manage to make it true, but no to click the box, which is what I am looking for. Could you help me, please? It doesnt need to be like this, if you have any other option it would be fine.
Dim boxA(i) as Boolean
Dim boxB(i) as Boolean
.....
boxA(1) = Sheet1.ChkA1.Value
....
boxA(10) = Sheet1.ChkA10.Value
boxB(1) = Sheet1.ChkA1.Value
....
boxB(10) = Sheet1.ChkA10.Value
For i=i To 10
boxA(i) = "True"
boxB(i) = "True"
....
next i
I dont really know how to manage to make all my checkboxes "true" in one go, due to my code.
I was wondering that maybe with the "GroupName" I could try but I dont know the way
I have three different checkboxes, which are in different sheets:
chkA1, chkA2, ...chkA10 (Sheet1)
chkB1,..............chkB10 (Sheet2)
chkC1,..............chkC10 (Sheet3)
I would like to click all of them in one go. I mean. In my code which is shown a part below this lines, I manage to make it true, but no to click the box, which is what I am looking for. Could you help me, please? It doesnt need to be like this, if you have any other option it would be fine.
Dim boxA(i) as Boolean
Dim boxB(i) as Boolean
.....
boxA(1) = Sheet1.ChkA1.Value
....
boxA(10) = Sheet1.ChkA10.Value
boxB(1) = Sheet1.ChkA1.Value
....
boxB(10) = Sheet1.ChkA10.Value
For i=i To 10
boxA(i) = "True"
boxB(i) = "True"
....
next i