Hide Column Condition

A

al007

Can anybody give me a macro for the following:

I have a list of item on row 2, with their corresponding category on
row 1 as per below:

Categ A CategB Categ A Gateg C Categ A Categ B
Item1 Item2 Item3 Item4 Item5 Item6

I would like to hide all column if categories in row 1 are not of
Category A

Thxs beforehand
 
R

Rowan Drummond

Try:

Sub header()
Dim eCol As Integer
Dim i As Integer
eCol = Cells(1, Columns.Count).End(xlToLeft).Column
For i = 1 To eCol
With Cells(1, i)
If .Value <> "Categ A" Then
.EntireColumn.Hidden = True
End If
End With
Next i
End Sub

Hope this helps
Rowan
 
A

al007

Thxs a lot !! - One last favor - how can I make it work for
Sheet1,Sheet2 & Sheet3 with one same macro

Thxs
 
D

davidm

Enclose the main body of Rowan's code with a For...Next Loop:


For each sh in Worksheets
Sh.Activate

Code

Next


David
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top