FILTERING QUESTION

meppwc

Well-known Member
Joined
May 16, 2003
Messages
626
Office Version
  1. 365
Platform
  1. Windows
I have a spreadsheet where as columns L, M, N, O all have numbers in them. There are over 6000 rows.
I am looking for a quick way to filter those columns to where I can see only rows where the value in any of the columns mentioned, are less that 20.
 
Try this:

Excel Formula:
=FILTER(L2:O10000,MMULT(--(L2:O10000<20),{1;1;1;1}),"")
 
Upvote 0

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
I placed in cell Q1 where no data exists in the column........the result was #CALC!
 
Upvote 0
In that case you have no cells that are <20. Check that your numbers are real numbers & not text.
 
Upvote 0
Same result, and values exist less that 20 all the way down to 0
 
Upvote 0
That suggests that your "numbers" are in-fact text.
 
Upvote 0
Try this mod to Phuoc's suggestion
Excel Formula:
=FILTER(L2:O10000,MMULT((--L2:O10000<20)*(L2:O10000<>""),{1;1;1;1}),"")
 
Upvote 0
In that case can you post some sample data using the XL2BB add-in
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,853
Members
452,361
Latest member
d3ad3y3

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