3 Go to Developer's tab > click on "Visual Basic" button or hit Alt + F11.
4 Go to Insert tab > click on "Module" or hit M.
5 Copy the VBA code from below.
6 Paste the code in the newly created module.
7 Go to Run tab > click on "Run Sub/UserForm" or hit F5.
8 That's it!
Advertisement
Code
Option Explicit
'==========================================
' Add Checkboxes
'==========================================
Sub addCheckBoxes()
' Set variables
Dim c As Range
Dim chk As CheckBox
' Delete old CheckBoxes
For Each chk In Worksheets(1).CheckBoxes
chk.Delete
Next chk
' Use the first worksheet in the workbook
With Worksheets(1)
' Delete old values
.Range("D2:D1048576").ClearContents
' Loop in column "C"
For Each c In Range("C2:C" & Cells(1048576, 1).End(xlUp).Row)
' Check if there are any values in column "C"
If c <> "" Then
' Insert CheckBoxes
Set chk = .CheckBoxes.Add(c.Offset(0, 1).Left, c.Top - 2, 1, 1)
' Delete CheckBoxes Caption
chk.Caption = ""
' Link to next cell
chk.LinkedCell = c.Offset(0, 1).Address
End If
Next c
End With
End Sub