Hi
Target is the range object of the currently selected/active Cell/Range when the worksheet that the module is in changes.
ie
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
MsgBox Target.Address
End Sub
will display the address of the cell that has been changed, or the top left cell if it is a range of more that one cell.
Hope that makes sense.
MTB
EDIT: and MsgBox Target.Row displays the current row number.