E
Ed
I am using the following code to highlight the entire row of the selected cell:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Rows.Interior.ColorIndex = xlNone
ActiveCell.EntireRow.Interior.ColorIndex = 6
End Sub
What do I need to add, to make it also highlight the corresponding cell on
row 2 of the active cell??
thanks!
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Rows.Interior.ColorIndex = xlNone
ActiveCell.EntireRow.Interior.ColorIndex = 6
End Sub
What do I need to add, to make it also highlight the corresponding cell on
row 2 of the active cell??
thanks!