How can I make this macro work if my cells contain a text e.g AAA
instead of 0 & work on Sheet1, Sheet2 & Sheet3
Sub Test1()
Dim cell As Range
For Each cell In Range("c1:j1")
If cell.Value <> 0 Then
cell.EntireColumn.Hidden = True
End If
Next cell
End Sub
Thxs
Bookmarks