Press Alt-F11 to open the Visual Basic Editor.
Click Insert > Module.
In the module which is created, paste the following code, and change the lRow and sHide values to suit your requirement:
Sub HideColumnsByValue()
'change this number to the row you wish to check
Const lRow As Long = 8
'change this text to the value for which the column should be hidden
Const sHide As String = "DON'T PRINT"
Dim c As Range
On Error GoTo Terminate
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
With ActiveSheet
For Each c In Intersect(.UsedRange, .Rows(lRow)).Cells
c.EntireColumn.Hidden = c.Value = sHide
Next c
End With
Terminate:
If Err Then
Debug.Print "Error", Err.Number, Err.Description
Err.Clear
End If
With Application
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
Close the Visual Basic Editor to return to Excel.
Press Alt-F8, select "HideColumnsByValue" and click "Run"
If you want to show all columns again, you could add this code to the module in the Visual Basic Editor, and run the macro "UnhideAllColumns":
Sub UnhideAllColumns()
ActiveSheet.UsedRange.EntireColumn.Hidden = False
End Sub
Bookmarks