James,
I use the following macro to highlight the current selection. It cycles
between 4 highlight colors as well as no highlight. You can easily change the
colorindex values to suit your preferences, but unfortunately the macro does
clear the Undo stack. I have the macro bound to the Ctrl^Shift^H key
combination so I can easliy select a highlight color by repeatedly pressing
this combination.
To highlight the entire row you could press Shift^Space then Ctrl^Shift^H,
or you could modify the code to use the expression "With
Selection.EntireRow.Interior" instead of "With Selection.Interior"
Hope that helps,
TK
Code follows:
Sub Highlight()
Dim color As Variant
With Selection.Interior
Select Case .ColorIndex
Case xlNone
.ColorIndex = 6
Case 6
.ColorIndex = 3
Case 3
.ColorIndex = 5
Case 5
.ColorIndex = 37
Case Else
.ColorIndex = xlNone
End Select
End With
End Sub