It sounds like you created your check box by using the forms checkbox. If you go to view->toolbars->contol toolbox and create the control from there the move and size option should be available.
When I create a checkbox, then click on FORMAT CONTROL -> PROPERTIES, the option "Move and Size with Cells" is not highlighted (i.e. not available)?
Is there a way to have this enabled?
Thanks[/img]
There is a work around.
- Select 2 or more checkboxes.
By using the functionality 'select objects' (arrow) of the 'drawing' toolbar.
- Then select: 'draw' / 'group' from the 'drawing' toolbar.
After this you can ungroup again, if you wish. Now the greyed out "Move and size with Cells" is selected.
Strange but it works.
Good luck.
Ta Chiang
ActiveSheet.CheckBoxes.Add(ActiveCell.Left, ActiveCell.Top, 54, 18).Select
With Selection
.Name = "YourUniqueName"
.Caption = "Your Caption"
.Value = False
.LinkedCell = "A1"
.Display3DShading = False
.Placement = XlPlacement.xlMoveAndSize
.PrintObject = True
End With
ActiveSheet.Shapes.Range(Array("YourUniqueName", "HiddenCheckBox")).Select
Selection.Placement = xlMoveAndSize