Transpose with 2 filters

FuNeS13

Board Regular
Joined
Oct 25, 2016
Messages
160
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
  2. Mobile
  3. Web
Okay I have a sheet that gets me a list of components based on the parent material, and the formula for that works great...

=TEXTJOIN(", ",,TRANSPOSE(FILTER(UniqueBOMs!A:A,$A2=UniqueBOMs!B:B)))

The thing that I need now is to add another filter to the result, which is check is $C$1=UniqueBOMs!F:F... my original idea was to try to do it as if I was looking 2 or more values in an Xlookup... Something like this:

=TEXTJOIN(", ",,TRANSPOSE(FILTER(UniqueBOMs!A:A,$A2=UniqueBOMs!B:B&$C$1=UniqueBOMs!F:F)))

but it doesn't work, it returns a blank cell (I know it should return 3 components for the 1st parent material)...

anyone know if what I'm trying to do is possible with a formula?
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Try:

Excel Formula:
=TEXTJOIN(", ",,TRANSPOSE(FILTER(UniqueBOMs!A:A,($A2=UniqueBOMs!B:B)*($C$1=UniqueBOMs!F:F))))

I'd recommend against using whole column references, it can make your sheet sluggish.
 
Upvote 0
Solution
oh yeah!!! that worked!!!! thank you Eric!!!
 
Upvote 0

Forum statistics

Threads
1,216,079
Messages
6,128,687
Members
449,464
Latest member
againofsoul

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