Hi everyone,
I don't know much about VBA, but I am trying to hide rows on multiple sheets without having to go through each sheet and run the macro. Here is my code:
Sub HideRows()
Dim cell As Range
For Each cell In Range("A1:A30")
If UCase(cell.Value) = "NO" Then
cell.EntireRow.Hidden = True...