Hi,
I am looking to insert a new checkbox into the next empty cell. I can get this far, but then can't specify the properties of the box. See below:
ActiveSheet.OLEObjects.Add "Forms.CheckBox.1", Left:=1206, Top:=(Range("T" & Rows.Count).End(xlUp).Offset(1).Top) + 2.25, Width:=12, Height:=12
I want to give the checkbox the following properties:
.Caption = ""
.Value = xlOff '
.LinkedCell = Range("T" & Rows.Count).End(xlUp).Offset(1)
.Display3DShading = False
If I then introduce a filter to the headings of the columns, will the checkboxes reorder if I change the order of another column?
Thank you
I am looking to insert a new checkbox into the next empty cell. I can get this far, but then can't specify the properties of the box. See below:
ActiveSheet.OLEObjects.Add "Forms.CheckBox.1", Left:=1206, Top:=(Range("T" & Rows.Count).End(xlUp).Offset(1).Top) + 2.25, Width:=12, Height:=12
I want to give the checkbox the following properties:
.Caption = ""
.Value = xlOff '
.LinkedCell = Range("T" & Rows.Count).End(xlUp).Offset(1)
.Display3DShading = False
If I then introduce a filter to the headings of the columns, will the checkboxes reorder if I change the order of another column?
Thank you