How to quickly delete multiple checkboxes in Excel?

Maybe you have a worksheet with a lot of checkboxes, and now you want to delete them. Except for removing them one by one manually, are there any fast ways to delete them?

Delete multiple checkboxes with Go TO command

Delete multiple checkboxes with Select Objects function

Delete multiple checkboxes with VBA code


Hot
Amazing! Using Tabs in Excel like Firefox, Chrome, Internet Explore 10!

Learn more Free download

arrow blue right bubbleDelete multiple checkboxes with Go TO command

Go To command can select many types of control including the checkboxes, if your worksheet has only checkboxes control object, the method can help you select the multiple checkboxes and delete them at once.

1. Click Home > Find & Select > Go To Special, and a Go To Special dialog box will appear. See screenshot:

doc-remove-checkboxes1

2. Then choose the Objects option from the Select. Click OK.

3. And all of the checkboxes have been selected, and then press Delete key on the keyboard.

4. All of the checkboxes will be deleted.

Note: If there are other objects in the same worksheet, this method will delete them as well.


arrow blue right bubbleDelete multiple checkboxes with Select Objects function

With the Select Objects function, you can also select the checkboxes.

1. Click Home > Find & Select > Select Objects. See screenshot:

doc-remove-checkboxes2

2. Then select the range that contains the checkboxes you want to select. See screenshot:

doc-remove-checkboxes3

3. And then press Delete key on the keyboard. And the checkboxes will be removed.

Note: if the range contains other objects, it will select the other objects.


arrow blue right bubbleDelete multiple checkboxes with VBA code

The following short VBA code also can remove the multiple checkboxes. Please do as the following steps:

1. Click Developer > Visual Basic, a new Microsoft Visual Basic for applications window will be displayed, click Insert > Module, and input the following code into the Module:

Sub RemoveCheckboxes()
On Error Resume Next
ActiveSheet.CheckBoxes.Delete
Selection.FormatConditions.Delete
End Sub

2. Then click doc-multiply-calculation-3 button to execute the code. And all of the checkboxes have been deleted.

Related Artical:

How to quickly insert multiple checkboxes in Excel?


Kutools for Excel

More than 120 Advanced Functions for Excel 2013, 2010, 2007 and Office 365.

screen shot

btn read more     btn download     btn purchase