Hello everyone
I want to run macro Hide rows if the workbook name is not 1 i.e. to run the macro on all sheets except the sheet names "1"
For this I am doing this--
But this is running on The sheet named as "1" too....
Can someone please Help....
Sub Apply_to_all_sheets()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
With ws
If .Name <> "1" Then
Call HideRows
End If
End With
Next ws
End Sub
Sub HideRows()
Dim cell As Range
For Each cell In Range("BA3:BA22")
If Not IsEmpty(cell) Then
If cell.Value = 1 Then
cell.EntireRow.Hidden = True
End If
End If
Next
End Sub
Bookmarks