Double Filter?

Jedi Master

Board Regular
Joined
Jun 10, 2024
Messages
70
Office Version
  1. 365
Platform
  1. Windows
I have a Master Worksheet (2-Quote Master) that looks at 2 sub master worksheets: (Quote Task Master)(Change Order Master). The Master worksheet is below:

1721910028180.png


Quote Task Master worksheet is below:
1721910092617.png


Change Order Master is below:
1721910247840.png


I am looking to alter the following formula:

=IF('Quote Task Worksheet '!A50="","",LET(X,VSTACK('Quote Task Master'!B30:B39,'Change Order Master'!B30:B39),UNIQUE(FILTER(X,INDEX(X,,1)<>""))))

to give column B where CDL Driver that has no value in column A in either of the sub master sheets is filtered out. I should end up with what the 2-Quote Master looks like above. Can anyone please help restructure the above formula to accomplish this?
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Maybe:

=IF('Quote Task Worksheet '!A50="","",LET(X,VSTACK('Quote Task Master'!A30:B39,'Change Order Master'!A30:B39),UNIQUE(CHOOSECOLS(FILTER(X,INDEX(X,,1)<>""),2))))
 
Upvote 1
Solution
Maybe:

=IF('Quote Task Worksheet '!A50="","",LET(X,VSTACK('Quote Task Master'!A30:B39,'Change Order Master'!A30:B39),UNIQUE(CHOOSECOLS(FILTER(X,INDEX(X,,1)<>""),2))))
Thank you so much!!
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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