Skip to main content

How to quickly insert multiple checkboxes in Excel?

How can we quickly insert multiple check boxes in Excel? Please follow these tricky methods in Excel:

Insert multiple checkboxes with Fill Handle

Insert multiple checkboxes with VBA code

Insert and delete multiple checkboxes with one click by using Kutools for Excel


arrow blue right bubble Insert multiple checkboxes with Fill Handle

In Excel, Fill Handle is a powerful function to do many things. It can fill the checkboxes as well. First, you must insert a checkbox. Do as follows:

1. Click Developer in the menu bar, then click Insert, and choose the checkbox image under Form Control. See screenshot:

doc-insert-multiple-checkboxes1

2. Click the checkbox image, and you will see plus sign pointer, click where you want to add checkbox.

doc-insert-multiple-checkboxes2

3. Select the check box and move it to a cell, and then delete the name of the checkbox.

4. Then select the cell where the checkbox stay in. And then drag the fill handle over the range of cells that you want to fill. See screenshot:

doc-insert-multiple-checkboxes3


Insert multiple checkboxes in selections with one click:

Kutools for Excel's Batch Insert Check Boxes utility can help you to quickly insert multiple checkboxes at once. Click to free download this feature.

doc insert multiple checkboxes 10

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!


arrow blue right bubble Insert multiple checkboxes with VBA code

If you think the first method is somewhat troublesome, the following VBA code can help you easily and quickly insert multiple checkboxes.

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 InsertCheckBoxes()
'Updateby Extendoffice
Dim Rng As Range
Dim WorkRng As Range
Dim Ws As Worksheet
On Error Resume Next
xTitleId = "KutoolsforExcel"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
Set Ws = Application.ActiveSheet
Application.ScreenUpdating = False
For Each Rng In WorkRng
    With Ws.CheckBoxes.Add(Rng.Left, Rng.Top, Rng.Width, Rng.Height)
        .Characters.Text = Rng.Value
    End With
Next
WorkRng.ClearContents
WorkRng.Select
Application.ScreenUpdating = True
End Sub

2. Then click doc-multiply-calculation-3 button to run the code. And a prompt box will pop out to remind you to select a range of cells that you want to insert the checkboxes. See screenshot:

doc-insert-multiple-checkboxes4

3. And then click OK, the checkboxes have been inserted in the range neatly and beautifully. See screenshot:

doc-insert-multiple-checkboxes5


arrow blue right bubble Insert multiple checkboxes with Kutools for Excel

Here, I can introduce you an easy and handy way to insert multiple checkboxes-Kutools for Excel, with its Batch Insert Check Box feature, you can insert the checkboxes into blank cells or cells with data.

Kutools for Excel : with more than 300 handy Excel add-ins, free to try with no limitation in 30 days.

After installing Kutools for Excel, please do with following steps:

1. Select a range of cells that you want to insert the checkboxes.

2. Click Kutools > Insert > Batch Insert Check Boxes, see screenshot:

doc-insert-multiple-checkboxes06

3. Then your selected cells have been filled with the checkboxes as following screenshots shown:

Insert checkboxes into blank cells Insert checkboxes into data cells
doc-insert-multiple-checkboxes7 doc-insert-multiple-checkboxes8

Tips. If you want to quickly delete multiple checkboxes, please try to use the Kutools for Excel’s Delete Check Boxes as shown in the following screenshot. It’s full function without limitation in 60 days, please download and have a free trial now.

doc-insert-multiple-checkboxes9

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!


arrow blue right bubble Insert and delete multiple checkboxes with Kutools for Excel

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!

Related Article:

How to quickly delete multiple checkboxes in Excel?

Best Office Productivity Tools

Supercharge Your Spreadsheets: Experience Efficiency Like Never Before with Kutools for Excel

Popular Features: Find/Highlight/Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns     Move Columns   |   Unhide Columns   |   Compare Columns to Select Same & Different Cells ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolset12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   Many More...

Kutools for Excel boasts over 300 features, ensuring that what you need is just a click away...

Supports Office/Excel 2007-2021 & newer, including 365   |   Available in 44 languages   |   Enjoy a full-featured 30-day free trial.

kte tab 201905


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (51)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Thanks for the tips, could help me , I am trying to select multiple checkboxes and based on selection count should be displayed. could help me with macro code for same
This comment was minimized by the moderator on the site
Hello, Rohit,

May be the following article can help you, please view it.
https://www.extendoffice.com/documents/excel/2460-excel-sum-count-checkboxes.html

Hope it can help you!
This comment was minimized by the moderator on the site
Hello and thank you for the tips above. Note that in your Sub, you must declare the variable xTitleId with Dim xTitleId as String.. otherwise the routine will produce an error, assuming the user has VBA set with Option Explicit. The Dim above solves the problem and the Sub works perfectly thereafter. Thanks for the great advice and information.
This comment was minimized by the moderator on the site
Great macro, gracefully written!!! Thank you!
This comment was minimized by the moderator on the site
I just purchased the program. When I insert the checkboxes, they are slightly lower than the cell itself, so they are encroaching into the cell below. How can I reposition each of those cells?
This comment was minimized by the moderator on the site
Hye there. im new here n new for using excel.can i know how to put other excel sheet under one excel sheet. example when i open 1 excel sheet and i got my audit plan. Then i got list of country overall such as Canada and Belgium. So what i wan to know how if i click Canada and my audit plan for Canada will appear.
This comment was minimized by the moderator on the site
Why is my name in this list? I did not take this class.
This comment was minimized by the moderator on the site
Hi Just followed your code to create a list of checkboxes on my spreadsheet, I am very new to this but have managed to follow it and worked perfectly. I just cant remove the checkbox labels coming up? i have a pretty long spreadsheet and deleting them individually is impossible. can i remove the labels that come up with each checkbox??? please help
This comment was minimized by the moderator on the site
Really good macro How do insert them already checked? i.e. their value is already 1? Thanks
This comment was minimized by the moderator on the site
THANK YOU!!! Great post!
This comment was minimized by the moderator on the site
Hello, this macro is a GREAT timesaver - thank you! I'm terrible with VBA, but I was trying to determine which line(s) in the code I may be able to comment to keep the range-reminder dialog from appearing. Is that possible? I'm prepping some checklists for our marketing group and entering a MILLION checkboxes (so you can imagine how much this macro helps), but I have to stop with each group/range and click on that darn dialog. Any way to disable it so I can maybe re-enable it later? Thanks for any help! -LLD
This comment was minimized by the moderator on the site
I'm attempting to make a call log (in a table format) that has check boxes. I want to be able to sort/filter the table and have the check boxes move accordingly with the other data. At the moment, they're fixed.
This comment was minimized by the moderator on the site
Great Post! Is there a Way to do the VBA Code with toggle buttons?
This comment was minimized by the moderator on the site
:-) Hello, Thanks for the tips! I was wondering, is there another simple way to insert checkboxes into the actual cell..vs floating? Also, can you insert... -as a dropdown field - categorizable (is that even a word? ;/) -in the cell - so you can format alignment thanks!
This comment was minimized by the moderator on the site
There is no built-in way that Microsoft makes that lets you turn Excel into a check list. There are tons of different list applications. I do know one way that you can make it the checkmarks work in the way that you are probably expecting but it is not simple or straightforward and would not be practical unless you did it once. http://www.excelhero.com/blog/2011/03/excel-dynamic-checkmark.html<br /> It uses conditional formatting, dynamically named ranges and an event listener script. You could also just use a font and type it in. http://www.addintools.com/documents/excel/where-is-check-mark-symbol.html<br /> And about text alignment within a cell through a dropdown,... I'm not sure what you want to do. But if you want the text alignment to change with the value in a cell you could try a custom number format where you use asterisk followed by a space to repeat a space. Format the cells as center aligned. That would force the values entered into the cell to the left or the right depending on your custom number format: http://office.microsoft.com/en-us/excel-help/create-or-delete-a-custom-number-format-HP001216503.aspx
This comment was minimized by the moderator on the site
I have an xml mapped excel spreadsheet where a user copies and pastes a number of rows then we can export to an xml file. I would like to add a column with check boxes and have the user check appropriately then have that field export as true/false to xml. Any idea how this could be accomplished?
This comment was minimized by the moderator on the site
If I understand you correctly you have an xml mapped excel file that is intended for users to copy and paste into. Then the user users the XML Export tool to create a second file that is an XML file that is then used in another process. Well if you have the excel file with cells mapped you could have the check boxes setup in the file ahead of time. The checkboxes can be placed on cells that are mapped. The checkboxes insert True/False into the cells they are linked to or turn empty or to a check mark depending on what is entered into the cell. If a user pastes values into those cells the checkbox won't be affected unless that pasted value is "True" or "1". You can have the user either paste values or use the checkboxes to enter TRUE/FALSE. Once the user has gotten the excel file the way they want they can then export to XML.
This comment was minimized by the moderator on the site
[quote][quote]Yes. Yes, there is. There is always a way.By MikeC[/quote] OK. How would I accomplish this. I am not well versed in excel syntax. I have tried .text and .value (for c in the above code). With incorrect results. I have tried a myriad of things that would normally be the result but no luck. What I have is a large bullet list of items that I would like to [quote][quote]Yes. Yes, there is. There is always a way.By MikeC[/quote] OK. How would I accomplish this. I am not well versed in excel syntax. I have tried .text and .value (for c in the above code). With incorrect results. I have tried a myriad of things that would normally be the result but no luck. What I have is a large bullet list of items that I would like to replace the bullet with a check box and have the value and text of that box be the original text of the bullet itemBy Danny[/quote]e] replace the bullet with a check box and have the value and text of that box be the original text of the bullet itemBy Danny[/quote] Original code, plus it takes the list that is in the cells and uses that as the text for the check box Sub AddCheckBoxes() On Error Resume Next Dim c As Range, myRange As Range, Text As String Set myRange = Selection For Each c In myRange.Cells BoxLabel = c.Value '
This comment was minimized by the moderator on the site
it really helped a lot. thank to you!
This comment was minimized by the moderator on the site
hi, this macro works beautifully for me. i needed a little favour - i would like to ensure that the checkboxes are placed bang in the centre of the cell. can someone please help? best regards.
This comment was minimized by the moderator on the site
hi, would you be able to help with one small tweak to your code, which is working just great for me otherwise? i would like the cell to be exactly centered within the cell housing it. thanks and regards.
This comment was minimized by the moderator on the site
[quote]hi, would you be able to help with one small tweak to your code, which is working just great for me otherwise? i would like the cell to be exactly centered within the cell housing it. thanks and regards.By Ali Mac[/quote] For Each Rng In WorkRng With Ws.CheckBoxes.Add((Rng.Offset(0, 1).Left - Rng.Left) / 2 + Rng.Left - 8, Rng.Top, 0.33, Rng.Height) .Characters.Text = Rng.Value End With
This comment was minimized by the moderator on the site
Hey, I found this and it works great, but im using it for a daily checklist and i put rows, and when i check one box (i.e. in row 3) all check boxes in that row are checked. Is there a way to make each check box individual/independent?
This comment was minimized by the moderator on the site
You need to either delete those check boxes that are linked and re-create them with the macro or you can try the code I posted earlier that resets the link between cells and check boxes.
This comment was minimized by the moderator on the site
The code worked great. Thank you!
This comment was minimized by the moderator on the site
Sub RelinkCheckBoxes() 'You select cells that include the checkboxes that are acting weird. 'Then you run the macro. 'It changes those checkboxes so that the linked cells correspond to the cells underneath. 'Also it makes the checkbox text turn into the cell text. Dim ckbox As Shape Dim rngLinkedCell As Range If ActiveSheet.CheckBoxes.Count = 0 Then Exit Sub 'Test that selection is a range. If TypeName(Selection) "Range" Then Exit Sub For Each ckbox In ActiveSheet.Shapes 'Test that the shape is a control. If ckbox.Type = msoFormControl Then 'test that the control is a checkbox If ckbox.FormControlType = xlCheckBox Then 'find the cell under the checkbox that is within the selection Set rngLinkedCell = Application.Intersect(ckbox.TopLeftCell, Selection) 'assign a new link address and rename the checkbox to match. If Not rngLinkedCell Is Nothing Then With ckbox .OLEFormat.Object.LinkedCell = rngLinkedCell.Address .Name = rngLinkedCell.Address .TextFrame.Characters.Text = rngLinkedCell.Text End With End If End If End If Next
This comment was minimized by the moderator on the site
how to change cell address
This comment was minimized by the moderator on the site
I have a excel spreadsheet that has a question and then to the right are other columns "Controls Met, column f and G with check boxes that have been check, column F yes or column G no. I only want to use the filter to get each of the rolls that have a check mark, but the filter does not see s check mark
This comment was minimized by the moderator on the site
Hey guys, this is so helpful - thanks! Quick question, I'm completely inexperienced with this type of stuff so sorry if it's a stupid one! I would like to just have tick boxes (without the true or false) and I would like the boxes to be yellow when not ticked but have no fill once ticked, to indicate students who have not handed in drafts and assessment, etc. Is this possible? Could someone please post the actual code for this, or walk me through it? Many thanks in advance!!!
This comment was minimized by the moderator on the site
how to change the reference address for multiple checkboxes
This comment was minimized by the moderator on the site
Is there a way to have the checkbox text be the text of the selected cell?
This comment was minimized by the moderator on the site
Yes. Yes, there is. There is always a way.
This comment was minimized by the moderator on the site
[quote]Yes. Yes, there is. There is always a way.By Danny[/quote] OK. How would I accomplish this. I am not well versed in excel syntax. I have tried .text and .value (for c in the above code). With incorrect results. I have tried a myriad of things that would normally be the result but no luck. What I have is a large bullet list of items that I would like to replace the bullet with a check box and have the value and text of that box be the original text of the bullet item
This comment was minimized by the moderator on the site
Thanks a lot!, for check box.
This comment was minimized by the moderator on the site
Can we then filter those check boxes? Basically display only those who attended?
This comment was minimized by the moderator on the site
Yeah totally. The checkboxes are actually independent of the cells. They basically float over the spreadsheet and are linked to a cell by address inserting True and False values when clicked (or N/A if you make it a three-state checkbox). But when you filter in excel it hides specific rows. It will not hide the check boxes. I really don't suggest filtering with this macro. Strange things will happen and you might not realize when there are several check boxes sitting on top of each other or that two check boxes are linked to one cell and a cell is linked to no checkboxes. What I usually do is I will create a list and instead of checkmarks I will type a 1 or a 0 into the adjacent cell and then total. You can even pivot table the thing if your information gets complicated. For instance say you had another column that had the gender of your attendees. You could figure out how many men and how many women attended.
This comment was minimized by the moderator on the site
Can we then filter on those check boxes? Basically display only those who attended?
This comment was minimized by the moderator on the site
The check boxes go a bit nuts when you copy them with their linked cells. I had to write a thing to reset the linking for when I want to copy those cells somewhere else.
This comment was minimized by the moderator on the site
It keeps giving me an error when I open it that it had to fix errors? Any assistance? If someone would like to help I will post the report that I'm getting from Microsoft office.
This comment was minimized by the moderator on the site
The code works great! I edit the color now I'd like to center the checkboxes in each cell, any idea what I would need to modify for that? Thanks!
This comment was minimized by the moderator on the site
[quote]The code works great! I edit the color now I'd like to center the checkboxes in each cell, any idea what I would need to modify for that? Thanks!By Violet[/quote] For Each Rng In WorkRng With Ws.CheckBoxes.Add((Rng.Offset(0, 1).Left - Rng.Left) / 2 + Rng.Left - CkBoxSize, Rng.Top, 0.33, Rng.Height) .Characters.Text = Rng.Value End With
This comment was minimized by the moderator on the site
I did it but when I check one boc, all are being checked together. how can I separate them?
This comment was minimized by the moderator on the site
When I did this, everything worked great (Thank you!) except when the boxes are checked, it automatically has a yellow fill color in the cell. How do I make it to where the only thing that happens is the box is checked, no fill color? Thanks!
This comment was minimized by the moderator on the site
[quote]When I did this, everything worked great (Thank you!) except when the boxes are checked, it automatically has a yellow fill color in the cell. How do I make it to where the only thing that happens is the box is checked, no fill color? Thanks!By # Sean[/quote] Just change the line like it says in the comments: .FormatConditions(1).Interior.ColorIndex = 6 'change for other color when ticked Leave it out completely if you don't want a color change. Cheers!
This comment was minimized by the moderator on the site
AWESOME! Thank you so much!
This comment was minimized by the moderator on the site
Excellent work. Thank you :roll:
This comment was minimized by the moderator on the site
excellent macro works add checkbox in the cell, thank u :-)
This comment was minimized by the moderator on the site
Why is there only one boy in this class????
This comment was minimized by the moderator on the site
[quote]Why is there only one boy in this class????By Daniel[/quote] :lol: That's just for demonstration.
This comment was minimized by the moderator on the site
Great trick... I enjoyed it.
This comment was minimized by the moderator on the site
Excellent macro that works beautifully to quickly and easily insert check boxes into a selected range; thank you. Would you consider showing an example of a macro to insert in a selected range a customized drop down list with three options: "Yes", "No", and "Maybe"?
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations