VBA to clear checkboxes and specified cells

tdavis95

New Member
Joined
Feb 24, 2022
Messages
7
Office Version
  1. 2016
Platform
  1. Windows
Hello.

I currently have a clear button that successfully clears the range of cells.
I also added check boxes in my sheet (inserted from the Developer tab -> insert -> checkbox) checkboxes 15-20.
I want a way to add code in the VBA so that when it clears the text it will also uncheck the boxes. Is that something I can do?

Here is the code that I currently have:

Sub Clearcells()
Range("B6:B9").ClearContents
Range("B26:H36").ClearContents
End Sub
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
If you just want to uncheck them all, try this:

VBA Code:
Dim chkBox As Excel.CheckBox
For Each chkBox In ActiveSheet.CheckBoxes
        chkBox.Value = xlOff
Next chkBox
 
Upvote 0
Solution

Forum statistics

Threads
1,215,022
Messages
6,122,721
Members
449,093
Latest member
Mnur

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