Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I use the following code to hide the rows which add up to zero. But the sheets is getting long, over 6000 rows, and it takes long to run the macro. Is there a quicker way? Cheers, Harold ------------------------------------- Sub hide() a = Range("z2").Value For b = 3 To a If Range("z" & b).Value = 0 Then Rows(b).EntireRow.Hidden = True Else Rows(b).EntireRow.Hidden = False End If Next b End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rows won't hide | Excel Discussion (Misc queries) | |||
cut rows without cutting hide rows | Excel Discussion (Misc queries) | |||
Hide the rows | Excel Worksheet Functions | |||
Hide Rows - copy and paste only rows that show | Excel Worksheet Functions | |||
hide rows | Excel Discussion (Misc queries) |