baramburum
New Member
- Joined
- Dec 21, 2010
- Messages
- 48
Hi Experts:
I need a simple function - Highlight the row that I am currently stay in
Something like that:
http://www.youtube.com/watch?v=bGjqDGF7xaM
I used to use this code:
---------------------
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveSheet.Rows(Target.Row).Select ' highlite entire row
Target.Activate ' select the cell
End Sub
-----------------------
But it is not really comfortable, because now you have to double click on cell to copy or something else.
Please advice the better solution
thanks
I need a simple function - Highlight the row that I am currently stay in
Something like that:
http://www.youtube.com/watch?v=bGjqDGF7xaM
I used to use this code:
---------------------
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ActiveSheet.Rows(Target.Row).Select ' highlite entire row
Target.Activate ' select the cell
End Sub
-----------------------
But it is not really comfortable, because now you have to double click on cell to copy or something else.
Please advice the better solution
thanks