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.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Nvm, doesn't quite work that way.

Maybe this though:
Excel Formula:
=IFNA(HSTACK(FILTER(L2:L6001,L2:L6001<20),FILTER(M2:M6001,M2:M6001<20),FILTER(N2:N6001,N2:N6001<20),FILTER(O2:O6001,O2:O6001<20)),"")
 
Last edited:
Upvote 0
How about
Excel Formula:
=FILTER(L2:O10000,BYROW(L2:O10000,LAMBDA(br,COUNTIFS(br,"<20"))))
 
Upvote 0
My take is that the entire row should appear if any one of the cells is <20.
 
Upvote 0
Correct, the entire row should appear if any of the columns mentioned is <20
 
Upvote 0
Have you tried the formula I suggested?
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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