I'm trying to set up a worksheet change event that creates a checkbox in column 1 if the cell in column 8 changes. I am able to get a checkbox, but I can't get the caption to change. I'm able to do it using this code, but I don't want to do it manually. Thank you in advance for any pointers and help
VBA Code:
Dim c As Range
For Each c In Selection
Dim cb As checkbox
Set cb = ActiveSheet.CheckBoxes.Add(c.Offset(0, -7).Left, _
c.Offset(0, -7).Top, _
c.Offset(0, -7).Width, _
c.Offset(0, -7).Height)
With cb
.Caption = "Proposal Sent"
.Value = xlOff
.Display3DShading = False
End With
Next