Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I want the rows to highlight as I scroll down the spreadsheet.
When I am at a cell on a 14 inch spreadsheet, I'd like the entire row to highlight so I can easily distinguish data on that row without having to go all the way over the the left. |
#2
![]() |
|||
|
|||
![]()
I tried conditional formatting, but it was unreliable, in that the display
didn't always update. Sometimes multiple rows were highlighted, other times the active row wouldn't highlight. VBA works OK, though. There seems to be quite a bit of overhead required for this, meaning it perceptibly slows my system down. Right click on the sheet tab and "View Code" Paste in the code below Private Sub Worksheet_SelectionChange(ByVal Target As Range) Cells.Interior.ColorIndex = 0 Target.EntireRow.Interior.ColorIndex = 34 End Sub "SilverCondor" wrote: I want the rows to highlight as I scroll down the spreadsheet. When I am at a cell on a 14 inch spreadsheet, I'd like the entire row to highlight so I can easily distinguish data on that row without having to go all the way over the the left. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding five new rows every 40 rows in a spreadsheet? | Excel Discussion (Misc queries) | |||
Highlight entire rows as I scroll? | Excel Discussion (Misc queries) | |||
How do I identify dulicate rows in a spreadsheet? | Excel Discussion (Misc queries) | |||
Row selections by row # OR by even/odd rows in another spreadsheet | Excel Discussion (Misc queries) | |||
How do I delete blank rows at the bottom of a spreadsheet to get . | Excel Discussion (Misc queries) |