filtering

C

CMD

Hi. I use AutoFilter a lot to filter based on what information is contained
in a column. Is it possible to filter based on rows as well? For example,
show only columns that have this value in this row. Thanks.

Chris
 
B

Bernie Deitrick

Chris,

There is no built-in functionality to do that. You could use a macro, if you are comfortable with
that - for example, if you only wanted to show columns B to H if their value on the activecell's row
is Show Me, then you could use

Sub TryNow()
Dim myC As Range
For Each myC In Intersect(ActiveCell.EntireRow.Cells, Range("B:H"))
If myC.Value = "Show Me" Then
myC.EntireColumn.Hidden = False
Else
myC.EntireColumn.Hidden = True
End If
Next myC
End Sub


HTH,
Bernie
MS Excel MVP
 

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

Similar Threads


Top