Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
That doesn't look like you're unchecking checkboxes.
But glad you have what you want. Sean wrote: Thanks Dave, took what Bob said and sourced this piece of code that runs Sub DelAllCheckBoxes() Dim shp As Shape Application.ScreenUpdating = False Sheets("Sheet1").Activate On Error Resume Next For Each shp In ActiveSheet.Shapes If shp.FormControlType = xlCheckBox Then shp.Delete End If Next shp On Error GoTo 0 End Sub -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
check or uncheck a check box based on a cell value | Excel Discussion (Misc queries) | |||
Uncheck Check Boxes | Excel Programming | |||
check/uncheck a checkbox | Excel Programming | |||
How do I check/uncheck ten or odd Checkboxes by click on one check | Excel Discussion (Misc queries) | |||
Check / Uncheck Box | Setting up and Configuration of Excel |