Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have 52 Check boxes (representing each week of the year) on a sheet
called Account. How can I uncheck all boxes within this sheet via code, that will save me from clicking 52 times! Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim cb As CheckBox
For Each cb In ActiveSheet.CheckBoxes cb.Value = False Next cb -- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct) "Sean" wrote in message oups.com... I have 52 Check boxes (representing each week of the year) on a sheet called Account. How can I uncheck all boxes within this sheet via code, that will save me from clicking 52 times! Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excellent Bob, thanks a lot
Bob Phillips wrote: Dim cb As CheckBox For Each cb In ActiveSheet.CheckBoxes cb.Value = False Next cb -- HTH Bob Phillips (replace xxxx in the email address with gmail if mailing direct) "Sean" wrote in message oups.com... I have 52 Check boxes (representing each week of the year) on a sheet called Account. How can I uncheck all boxes within this sheet via code, that will save me from clicking 52 times! Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Forms toolbar to Control Toolbox check boxes? Always help to say.
-- Jim "Sean" wrote in message oups.com... |I have 52 Check boxes (representing each week of the year) on a sheet | called Account. How can I uncheck all boxes within this sheet via code, | that will save me from clicking 52 times! | | Thanks | |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
check or uncheck a check box based on a cell value | Excel Discussion (Misc queries) | |||
How do I uncheck numerous Excel2003 form toolbar check boxes? | Excel Worksheet Functions | |||
hiding data series with check/uncheck boxes | Charts and Charting in Excel | |||
Uncheck check boxes | Excel Discussion (Misc queries) | |||
How do I check/uncheck ten or odd Checkboxes by click on one check | Excel Discussion (Misc queries) |