Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That's it. How is it possible to create push-button functionality that
resets all checkboxes to empty? Also, is it possible that pushing a button could increase a counter, or light up a first, second and third cell, that would then be reset by the button I asked for above? I thank you for your time. Arlen |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
For Each ctl In Me.Controls
If TypeName(ctl) = "CheckBox" Then ctl.Value = False End I Next ctl -- HTH Bob "Arlen" wrote in message ... That's it. How is it possible to create push-button functionality that resets all checkboxes to empty? Also, is it possible that pushing a button could increase a counter, or light up a first, second and third cell, that would then be reset by the button I asked for above? I thank you for your time. Arlen |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks, Bob!
"Bob Phillips" wrote: For Each ctl In Me.Controls If TypeName(ctl) = "CheckBox" Then ctl.Value = False End I Next ctl -- HTH Bob "Arlen" wrote in message ... That's it. How is it possible to create push-button functionality that resets all checkboxes to empty? Also, is it possible that pushing a button could increase a counter, or light up a first, second and third cell, that would then be reset by the button I asked for above? I thank you for your time. Arlen . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to clear checkboxes | Excel Worksheet Functions | |||
Macro to clear checkboxes and protected cells | Excel Worksheet Functions | |||
Clear Checkboxes | Excel Discussion (Misc queries) | |||
Form Checkboxes are not maintaining cell link | Excel Discussion (Misc queries) | |||
Macro to make all checkboxes false and clear all comboxes | Excel Discussion (Misc queries) |