Hi ,I have a question,

When user clicks on different cell the following function is called.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Now if ,imagine the user is in row 3 and he clicks on row 10, Worksheet_SelectionChange(ByVal Target As Range) function is called, Now in this function Target.Row will give the present row that is 10 ,

but how can i find previous row which the user was in (i.e 3) ?

Thank you.
Glen