FILTERING QUESTION

meppwc

Well-known Member
Joined
May 16, 2003
Messages
636
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

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
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,226,693
Messages
6,192,460
Members
453,725
Latest member
cvsdatreas

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