|
Add the following code to the required sheet:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Target.Offset(0, 0) = Target.Row&","&Target.Column
End Sub
The result is that the row number, column number are automatically entered in the corresponding cell |
|