How to select specific CheckBox's?

Zman613

New Member
Joined
Oct 26, 2017
Messages
5
I'm using a lot of checkbox's on a sheet and I would like to 'Select All' for only some of them. Currently I have a code that uses a checkbox to select all and deselect all.

Here is the code I'm using:
Code:
Private Sub CheckBox17_Click()
    
    Dim ws As Worksheet
    Dim oj As OLEObject
    Set ws = ActiveSheet
    
'Cycle through all of the check boxes in the ActiveSheet
    If CheckBox17.Value = True Then
        For Each oj In ws.OLEObjects
            If TypeName(oj.Object) = "CheckBox" Then
            oj.Object.Value = True
            End If
        Next oj
    Else:
    Set ws = ActiveSheet
'Cycle through all of the check boxes in the ActiveSheet
        For Each oj In ws.OLEObjects
            If TypeName(oj.Object) = "CheckBox" Then
            oj.Object.Value = False
            End If
        Next oj
    End If
End Sub
What I need is for Checkbox's 18 to 48 to have a 'Select All' Button without effecting the earlier Checkbox's.
If anyone could help me with this I would greatly appreciate it.

Thanks in advance
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
try this...

Code:
for row = 18 to 48
    Controls("Checkbox" & row).value = true
next row
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,211
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top