Filter option.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some text in different cell with different background color.
I want to see the cells which has common background color.
Is there any filter option in excel to those cells.
 
No, not yet (it's on Ron's EasyFilter to do list).

Add a helper column and a UDF. The UDF would be

Function ColorIndex(rng As Range)
ColorIndex = rng.Interior.ColorIndex
End Function

add this i the helper column

=ColorIndex(A1) and copy down

Then filter on the helper column

If you don't want to remember the colour index codes, use something like

=ColorIndex(A1) = ColorIndex($A$1)

where the second part refers to the cell colour you wish to test. This will
return True or False for all cells, and filter on that instead.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi Bob
This is the first thing I add to the Add-in Bob

Seems to be a hot item
 

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

Back
Top