Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you can distinguish the trigger value (right now it is zero) that
indicates when to hide a row with something more distinct you could use goto special and do something like this: Sub Test() For Each rng In Columns("B:B").SpecialCells(xlCellTypeConstants, 1) rng.EntireRow.Hidden = True Next rng End Sub This one select on cells that have numbers in them in column B and then hides them. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Runtime Error 1004 | Excel Discussion (Misc queries) | |||
runtime error 1004 | Excel Discussion (Misc queries) | |||
runtime error 1004 | Excel Discussion (Misc queries) | |||
Excel 2003 Macro Error - Runtime error 1004 | Excel Discussion (Misc queries) | |||
Runtime error 1004 | Excel Programming |