Hi all,
I have this macro that hides rows when the value is “0”.
At the moment it’s not running very smoothly and updating quickly, i.e the Application.Sreenupdating isn’t working correctly.
I would also like to add run this in multiple sheets at the same time. Is this also possible?
Sub HideRows()
Dim cell As Range
Application.ScreenUpdating = False
For Each cell In Range("AU6:AU100")
cell.EntireRow.Hidden = cell.Value = 0
Application.ScreenUpdating = True
Next cell
End Sub
Any help appreciated.
Thanks in advance,
Mike
Bookmarks