Problem with filtering

hasanlianar

New Member
Joined
Jul 21, 2011
Messages
43
Hi,

I have a table and there is a "Status" column in that table. The Status column contain statuses "done" and "done" colored in green (either font color or fill color). There are also empty rows in this column. I want to first filter not empty rows, so I choose "done" in filter. Then I want to filter the "done"s which are not colored in green. I do it by choosing "FIlter by color" and then "no fill" in Filter window. But in this case empty rows also appear. I dont need empty rows. What I need is statuses of "done" not colored in green.

Could someone help on this?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
sort the data according to status column
the blank status will be pushed down
then insert TABLE only where status is done color or no color
now filter color NOT FILLED

FILTERED data may be copied wherever you want. do it by vba

e.g. code

Code:
range("table1").SpecialCells(xlCellTypeVisible).Copy range("a20")

the whole thing can be MACRO-RECORDED and the macro edited.

if there is problem post a small extract of your data.
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top