View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
[email protected] kletcho@gmail.com is offline
external usenet poster
 
Posts: 11
Default Runtime Error 1004 - Help

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.