Hello Eileen,
I don't think that you could use xl to filter by color b'coz filter only
recognize value but not format. One possible solution is to get a value for
that color that xl could identify. Give this a try
Press Alt+F11. VB editor will appear. Go to Insert|Module then paste
this UDF.
Function ColorInterior(Mycolor As Range) As String
ColorInterior = Mycolor.Interior.ColorIndex ' Get value of interior
color
End Function
Function ColorFont(Mycolor As Range) As String
Application.Volatile
ColorFont = Mycolor.Font.ColorIndex ' Get value of font color
End Function
Now return to xl then right this formula to your helper column
Assume that your cell is in A1
=ColorInterior(A1)
or
=ColorFont(A1)
You now have a value for your color that can be the criteria for your
filter. However, changing format does not trigger calculation this means
that when you change the color the calculation will not change
automatically. You have to "re-write" the formula (Press F2 then enter).
Another caveat, this only works for color that you put manually and not as
result of a conditional formatting.
Regards,
Jon-jon
due