T
Tdp
How do I link a checkbox to a cell so that when the cell is renamed it also
changes the name in the checkbox?
changes the name in the checkbox?
Thanks Dave,
Whilst I was waiting I tried different ways and came up with this one,
Is there anything wrong with the following?
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
UserForm1.CheckBox2.Caption = Worksheets("Sheet4").Range("C4").Value
UserForm1.CheckBox3.Caption = Worksheets("Sheet4").Range("C5").Value
End Sub
The caption may change now and then, but I`m after the ability to change the
checkbox caption. The code I try seems to work at the moment, but what I'm
worried about if it can lead to some problems if the code is not complete?