Chi
I have used windings asm well but I presume you want the
form CheckBoxes. If you do not mind VB this code inserts
3 checkBoxes in column A
Sub AddCheckBox()
Dim i As Long, n As Integer, j As Integer
Dim chk As Object, nme
Dim cb()
Set chk = ActiveSheet.CheckBoxes
Application.ScreenUpdating = False
n = 3
For i = 1 To n
ActiveSheet.CheckBoxes.Add(14.25, 21.75, 24,
17.25).Select
Next i
Range("A1").Select
For i = n To 1 Step -1
chk(i).Select
Selection.Characters.Text = ""
Selection.ShapeRange.IncrementTop n * 12
n = n - 1
Next i
' Release the selction on shapes
Selection = False
' reactivate the sheet
Range("A1").Select
Selection = "ok"
Application.ScreenUpdating = True
End Sub
Change the value of n to suit
Regards
Peter