Select all checkboxes in worksheet/workbook

klarowe

Active Member
Joined
Mar 28, 2011
Messages
389
How can I select all the checkboxes in either a sheet or a workbook and change them all to "move but do not resize with cells"??? Its a major PITA trying to go through them one at a time or even holding ctrl to select multiple... esspecially when there are over a couple hundred on my reports
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Perhaps:-
"Forms control"
Code:
Private Sub CommandButton1_Click()
  ActiveSheet.CheckBoxes.Placement = xlMove
End Sub
"ActiveX controls"
Code:
Private Sub CommandButton2_Click()
Dim shp As OLEObject
For Each shp In ActiveSheet.OLEObjects
    If TypeName(shp.Object) = "CheckBox" Then
        shp.Placement = xlMove
    End If
Next shp
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,836
Members
452,947
Latest member
Gerry_F

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