Dave here is one way, put in worksheet code, you might also want to have a
look here at chip's addin
http://www.cpearson.com/excel/rowliner.htm
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
' this procedure will remove any interior cell colors you have
Static OldRange As Range
On Error Resume Next
Target.Interior.ColorIndex = 6 ' yellow - change as needed
OldRange.Interior.ColorIndex = xlColorIndexNone
Set OldRange = Target
End Sub
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 97 & 2000
** remove news from my email address to reply by email **