![]() |
Uncheck Check Boxes
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 |
Uncheck Check Boxes
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 |
Uncheck Check Boxes
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 | |
Uncheck Check Boxes
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 |
All times are GMT +1. The time now is 12:09 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com