Filter Formula Function Help

Arts

Well-known Member
Joined
Sep 28, 2007
Messages
765
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi all

I have the following formula (which works fine) this returns the result of what I expect when entering letters within the search cell (Q6).

=FILTER($E$6:$E$11,ISNUMBER(SEARCH(Q6,$E$6:$E$11)),"No result")

My question is it possible to Filter across multiple sheets? At current I have two sheets set up "Current Projects" and "Upcoming Projects" and have the FILTER formula in each sheet rather than having it on one sheet and filtering across them both.

Many thanks
Ahtaf
 
Ok, how about
Excel Formula:
=LET(a,'Current Projects'!E6:E11,b,'Upcoming Projects'!E5:E8,ra,ROWS(a),s,SEQUENCE(ra+ROWS(b)),v,IF(s<=ra,a,INDEX(b,s-ra)),FILTER(v,ISNUMBER(SEARCH(Q6,v)),"No result"))
 
Upvote 0
Solution

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Ok, how about
Excel Formula:
=LET(a,'Current Projects'!E6:E11,b,'Upcoming Projects'!E5:E8,ra,ROWS(a),s,SEQUENCE(ra+ROWS(b)),v,IF(s<=ra,a,INDEX(b,s-ra)),FILTER(v,ISNUMBER(SEARCH(Q6,v)),"No result"))

That is remarkable!! First thoughts are how??? How would you know to do that???

I was really hoping it would be not as complex as that in order to grasp it ie maybe do the FILTER function as I did and then add a + with the second FILTER function.
I mean I usually try and learn what has been provided but that seems to be on a whole new level!

Thank you for helping
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,293
Members
449,077
Latest member
Rkmenon

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