S
Steve
I note from a previous post that an active cell's reference can be displayed
by inserting some code, as follows:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("A1").Value = Cells(Target.Row, Target.Column).Address(False, False)
End Sub
If I wish to show only the Active Cell's line number, how should this code
be changed? Does inserting code like this mess up the Undo function?
by inserting some code, as follows:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("A1").Value = Cells(Target.Row, Target.Column).Address(False, False)
End Sub
If I wish to show only the Active Cell's line number, how should this code
be changed? Does inserting code like this mess up the Undo function?