Barrie...I'm running with the VBA suggestion, but have small problem
Posted by JC on November 07, 2001 9:45 AM
Sorry I'm really not very experienced with VBA...only one way to change that!
I've run with your code as follows:
Sub HideRows()
For Each cell In Range("BV7:BV129")
Select Case cell.Value
Case Is = 0
cell.EntireRow.Hidden = True
Case Is = ""
cell.EntireRow.Hidden = True
End Select
Next cell
End Sub
This works great! The only problem is I want to reference an additional column (BW)...in short, I want both columns to be equal to zero, or blank (budget and actual)....
Thanks again for your help...I'm sure this is pretty simple, but like I said...I'm a rookie!