I have the following code to insert checkboxes in my worksheet. I am trying to have them maintain the property of moving with the cells, but it doesn't seem to be applying the change because when I right click and go to the format control window / properties tab, it is always at don't move or size with cells.
VBA Code:
ActiveSheet.CheckBoxes.Add(MyLeft, MyTop, MyWidth, MyHeight).Select
With Selection
.Caption = ""
.value = xlOff
.LinkedCell = addMe.Offset(n, 22).Address
.Display3DShading = False
.Placement = xlMove
.PrintObject = True
End With