excel

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Thanks in advance. This is probably not a question which
is asked alot but i have a number of users opening very
large excel sheets. A few users suggested that it might
be easier to where they are in a sheet if when selected
the cell either highlighted with colored background or the
color of the selected cell's border changed to another
color. Is this possible and if so any help would be much
appreciated.

Thanks,
Chris
 
1. Please use meaningful subject lines.
2. right click sheet tab>view code>copy paste this>if you don't want the
whole row just take out the .entirerow part.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.ColorIndex = xlColorIndexNone
Target.EntireRow.Interior.ColorIndex = 36
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top