silentwolf
Well-known Member
- Joined
- May 14, 2008
- Messages
- 1,216
- Office Version
- 2016
Hi,
I like to be able to highligth the Cell in column A after I pick a cell in that same row.
I got a formated table in a worksheet.
If I either mouse over or select a cell in that row I like to change the back color of that row.. Idealy from A:J in that row so I know which row has been selected or clicked.
Maybe even the row and the Column but only within.
So I got data in A3:I20.. if I select the Cell from B3:I20 I would like to highligth the row A3:J3
Hope I have it made clear what I am after.
I found a code on the net but it is not quite what I am after.
Many thanks
Albert
I like to be able to highligth the Cell in column A after I pick a cell in that same row.
I got a formated table in a worksheet.
If I either mouse over or select a cell in that row I like to change the back color of that row.. Idealy from A:J in that row so I know which row has been selected or clicked.
Maybe even the row and the Column but only within.
So I got data in A3:I20.. if I select the Cell from B3:I20 I would like to highligth the row A3:J3
Hope I have it made clear what I am after.
I found a code on the net but it is not quite what I am after.
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Me.Range("A1:XFD1048576").Interior.ColorIndex = 0
Target.EntireRow.Interior.ColorIndex = 6
End Sub
Many thanks
Albert