is this from forms or control tool bar ?
i found this code which will enter multiple forms check boxes linking a1 to b1 up to a1 to a10 on sheet 1 you can change range to suit
note make sure column is wide enough to fit labels first!! it creates from control tool box so the design mode button has to be clicked to edit/delete
Sub multcheckbox()
Dim ws As Worksheet
Set ws = Sheets("Sheet1")
Set rng = ws.Range("A1:A10")
For Each c In rng
With ws.OLEObjects.Add( _
ClassType:="Forms.CheckBox.1", _
Link:=False, _
DisplayAsIcon:=False, _
Left:=c.Left, _
Top:=c.Top, _
Width:=c.Width, _
Height:=c.Height)
.Object.Caption = "martin" 'insert what you want label to be here
.LinkedCell = c.Offset(0, 1).Address
.Object.Value = False
End With
Next c
End Sub
Bookmarks