Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi!
Try this one, this should work ok. Private Sub clearwateraudit_Click() Dim oSheet As Worksheet Dim oControl As OLEObject Dim i As Integer i = 1 For Each oSheet In Worksheets With Sheets(i) For Each oControl In .OLEObjects If TypeName(oControl.Object) = "CheckBox" Then ' if you use Control Toolbox objects oControl.Object.Value = False ' if you use Forms toolbar on a worksheet .CheckBoxes.Value = xlOff End If Next oControl End With i = i + 1 Next oSheet End Sub Regards, Kari J Keinonen |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
Need syntax for RUNning a Word macro with an argument, called from an Excel macro | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |