Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Test2 was just what i needed and works like a charm. Thank you very much!
"Mike H" wrote: Geoff, How depends on which toolbox you used, here's both ways Sub Test() 'from the Controls tolbar Dim obj As OLEObject For Each obj In ActiveSheet.OLEObjects If obj.progID = "Forms.CheckBox.1" Then obj.Object = False End If Next obj End Sub Sub Test2() 'from the Forms tolbar Dim obj As CheckBox For Each obj In ActiveSheet.CheckBoxes obj.Value = False Next obj End Sub Mike |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy and move check box (check boxes) with new cell link? | Excel Worksheet Functions | |||
all the check boxes should be checked if i check a particular checkbox in that row | Excel Programming | |||
Clear All Check Boxes | Excel Programming | |||
Enable check box in protected sheet + group check boxes | Excel Discussion (Misc queries) | |||
How do i create a value for check boxes or option boxes | Excel Discussion (Misc queries) |