filter function twice

BORUCH

Well-known Member
Joined
Mar 1, 2016
Messages
530
Office Version
  1. 365
Platform
  1. Windows
hi
i have the below formula

=SORT(FILTER(A3:A56777,ISNUMBER(SEARCH(R1,B3:B56777)),"No Match Found"))

my question is i want to add another filter in the same formula how do i go about that

my other filter would look something like this

=SORT(FILTER(A3:A56777,ISNUMBER(SEARCH(S1,C3:C56777)),"No Match Found"))

how do i combine them to one formula to give me my final results

Thanks
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
How about
Excel Formula:
=SORT(FILTER(A3:A56777,(ISNUMBER(SEARCH(R1,B3:B56777)))+(ISNUMBER(SEARCH(S1,C3:C56777))),"No Match Found"))
 
Upvote 0
How about
Excel Formula:
=SORT(FILTER(A3:A56777,(ISNUMBER(SEARCH(R1,B3:B56777)))+(ISNUMBER(SEARCH(S1,C3:C56777))),"No Match Found"))
sorry my question is a little different
i would like to add a filter not use the “ is number” formula on the second filter the second filter would be just filter A3:A56777 the criteria is C3:C56777=S1
 
Upvote 0
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

In that case how about
Excel Formula:
=SORT(FILTER(A3:A56777,(ISNUMBER(SEARCH(R1,B3:B56777)))+(C3:C56777=S1),"No Match Found"))
 
Upvote 0
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

In that case how about
Excel Formula:
=SORT(FILTER(A3:A56777,(ISNUMBER(SEARCH(R1,B3:B56777)))+(C3:C56777=S1),"No Match Found"))
thanks that worked
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,943
Messages
6,127,814
Members
449,409
Latest member
katiecolorado

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