Conditional Formating - Filter NON Formated rows

doug firr

Board Regular
Joined
Mar 28, 2011
Messages
140
Hi

I have a sheet with over 10,000 rows and numerous columns. One of the columns are descriptive and contain text.

I am seeking to filter the sheet based on this descriptive column where it contains one of three words: Decking, Flooring and Paneling. I did this - any row with decking in descriptive column is red, Flooring in descriptive column is blue and paneling in descriptive column is yellow.

Because I want to keep those rows that contain one of these three words only in the descriptive column, I want to filter by color: no fill. I can filter one of the individual colors and copy paste to another sheet 3 times, but for the future there surely must be a better way of filtering non filled cells?

... any ideas?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
So you want to filter the rows that DO NOT contain any of the 3 words?

Use a helper column with the formula

=OR(A1={"Decking","Flooring","Paneling"})
And fill it down.

Then filter on that column for FALSE.
 
Upvote 0
Thanks for response Jon. Tried that and it doesn't work - it returns False for everything (Yes I've changed the cell reference from A1 to match appropriate column!)

Never used "OR" before - the column in question has much text int he cells and I filtered on whether contains any of these key words amongst that text.. not sure if thats important here or not.
 
Upvote 0
try

=OR(NOT(ISERROR(FIND({"decking","panelling","flooring"},B2))))

then filter for false
 
Upvote 0
OK, that's the key...

the column in question has much text int he cells and I filtered on whether contains


Try
=ISNUMBER(LOOKUP(2,1/SEARCH({"Decking","Flooring","Paneling"},A1)))
 
Upvote 0
Brilliant thanks that has worked. Never used "search" before - hows that different from Find? Oh well, thanks again
 
Upvote 0
Glad to help, thanks for the feedback...


The difference between Search and Find is Case Sensitiveness...

FIND is case sensitive, Search is not.
 
Upvote 0
Glad to help, thanks for the feedback...


The difference between Search and Find is Case Sensitiveness...

FIND is case sensitive, Search is not.
Ha, I hadn't appreciated the distinction myself!

=OR(NOT(ISERROR(SEARCH({"decking","panelling","flooring"},B2))))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,616
Messages
6,179,908
Members
452,949
Latest member
beartooth91

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