This runs really slow. Any ideas on how to speed it up - its a toggle, when the values change from 0 to 1, the cells will hide / unhide. But it runs painfully slow.
Private Sub test99()
Application.ScreenUpdating = False
For Each Cell In Range("B5:B100")
If Cell.Value = 0 Then
Cell.EntireRow.Hidden = True
' End If
Else
' If Cell.Value > 0 Then
Cell.EntireRow.Hidden = False
End If
Next Cell
Application.ScreenUpdating = True
End Sub