initial value of checkbox

ankethaton

New Member
Joined
Dec 28, 2005
Messages
5
I have a button that resets my entire workbook (ie it deletes all user inputs). I also want this button to select all the checkboxes on my first worksheet called "Input Data"

How can I do it so that the value of all checkboxes (1 through to 11) is ticked (ie True)?

Thanks a lot.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Not tested, but something like this in your code (assumming that your checkboxes are named CheckBox1, CheckBox2, etc) should do the trick


Dim i As Integer
For i = 1 To 11
Me.Controls("CheckBox" & i).Enabled = True
Next i

Gene, "The Mortgage Man", Klein
 
Upvote 0

Forum statistics

Threads
1,214,789
Messages
6,121,590
Members
449,039
Latest member
Arbind kumar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top