Please see the attached code:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Address = "$N$206" Then Range("$A$206".Select
End Sub
The code is attached to an excel 97 worksheet. When the user selects cell N206, I want to move their selection to A206.
The code doesn't run at all, regardless of which cells I select. Does anyone have any idea what I am doing wrong?
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Address = "$N$206" Then Range("$A$206".Select
End Sub
The code is attached to an excel 97 worksheet. When the user selects cell N206, I want to move their selection to A206.
The code doesn't run at all, regardless of which cells I select. Does anyone have any idea what I am doing wrong?