Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I am filtering roughly 500 rows of data, and depending on the user's choice, some rows are hidden. For appearances, I like to do a banding of the data. Normally I would use VBA like the following: Cells(1, 1).Activate j = 2 Do Until IsEmpty(Cells(j, 1)) Range("A" & j & ":" & "W" & j).Interior.ColorIndex = 40 j = j + 2 Loop I hide the rows filtered using this code: Rows(ActiveCell.Row).Hidden = True All replies very much appreciated! Best regards, -NorTor |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Use VBA to shade every 3 rows (banding) | Excel Discussion (Misc queries) | |||
Deleting Visible Rows | Excel Discussion (Misc queries) | |||
Visible Rows Indexing | Excel Programming | |||
List Box Visible Rows Only | Excel Programming | |||
AutoFilter - which rows are currently visible? | Excel Programming |