Try pasting this code in to the worksheet.
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Cells.Interior.ColorIndex = -4142
With Target.EntireRow.Interior
.ColorIndex = 6
End With
End Sub
Note, this will slow down your movement and calculations.
Regards,
BarrieBarrie Davidson
Forgive my ignorance but how or where do I "paste"
this formula? Thanks again.
Forgive my ignorance but how or where do I paste this code on my worksheet? Thanks again.
Mario,
Right click on the sheet tab and select "View Code". A code sheet will pop up. Paste the code in there.
enjoy
Note it will also destroy any of your 'highlighting' that you may put into the worksheet.
Sr : I have a worksheet with 36 fields and over 800 rows.
Right click on the sheet tab and select "View Code". A code sheet will pop up. Paste the code in there. enjoy
Thanks, It works but you were right about slowing the movement down. Unfortunatly it is too slow to be practical now. Thanks anyway.