Using IF to conditionally LET/VSTACK

Jedi Master

Board Regular
Joined
Jun 10, 2024
Messages
70
Office Version
  1. 365
Platform
  1. Windows
=IF('Change Order Worksheet'!A50="","",LET(X,VSTACK('Change Order Worksheet'!A50:C73,'Change Order Worksheet (2)'!A50:C73,'Change Order Worksheet (3)'!A50:C73,'Change Order Worksheet (4)'!A50:C73,'Change Order Worksheet (5)'!A50:C73,'Change Order Worksheet (6)'!A50:C73,'Change Order Worksheet (7)'!A50:C73,'Change Order Worksheet (8)'!A50:C73,'Change Order Worksheet (9)'!A50:C73,'Change Order Worksheet (10)'!A50:C73),UNIQUE(FILTER(X,INDEX(X,,1)<>""))))

The above formula works perfectly and creates a filtered array from 10 worksheets. In each worksheet in cell P13 there is a Yes/No value. I need to make the above formula do exactly what it is doing now, but only if the P13 value in each of the 10 worksheets = "Yes". Can anyone please help me understand where and how to insert the values: (At least, I assume that is how I would have to do it?)

IF('Change Order Worksheet'!P13="Yes"
IF('Change Order Worksheet (2)'!P13="Yes"
ETC....
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Doubt:
If sheet2 has "Yes" and sheet5 has "Yes" and the other sheets have "No", do you want to filter only sheets 2 and 5?

Or only, if all the sheets have "Yes" then filter all 10 sheets, but if one sheet says "No", then don't filter.

By the way, you can abbreviate this part of the formula:
Excel Formula:
LET(X,VSTACK('Change Order Worksheet'!A50:C73,'Change Order Worksheet (2)'!A50:C73,'Change Order Worksheet (3)'!A50:C73,'Change Order Worksheet (4)'!A50:C73,'Change Order Worksheet (5)'!A50:C73,'Change Order Worksheet (6)'!A50:C73,'Change Order Worksheet (7)'!A50:C73,'Change Order Worksheet (8)'!A50:C73,'Change Order Worksheet (9)'!A50:C73,'Change Order Worksheet (10)'!A50:C73),UNIQUE(FILTER(X,INDEX(X,,1)<>"")))

like this:
Excel Formula:
LET(x,VSTACK('Change Order Worksheet:Change Order Worksheet (10)'!A50:C73),UNIQUE(FILTER(x,INDEX(x,,1)<>"")))

;)
 
Last edited:
Upvote 0
Doubt:
If sheet2 has "Yes" and sheet5 has "Yes" and the other sheets have "No", do you want to filter only sheets 2 and 5?

Or only, if all the sheets have "Yes" then filter all 10 sheets, but if one sheet says "No", then don't filter.

By the way, you can abbreviate this part of the formula:
Excel Formula:
LET(X,VSTACK('Change Order Worksheet'!A50:C73,'Change Order Worksheet (2)'!A50:C73,'Change Order Worksheet (3)'!A50:C73,'Change Order Worksheet (4)'!A50:C73,'Change Order Worksheet (5)'!A50:C73,'Change Order Worksheet (6)'!A50:C73,'Change Order Worksheet (7)'!A50:C73,'Change Order Worksheet (8)'!A50:C73,'Change Order Worksheet (9)'!A50:C73,'Change Order Worksheet (10)'!A50:C73),UNIQUE(FILTER(X,INDEX(X,,1)<>"")))

like this:
Excel Formula:
LET(x,VSTACK('Change Order Worksheet:Change Order Worksheet (10)'!A50:C73),UNIQUE(FILTER(x,INDEX(x,,1)<>"")))

;)
That abbreviation is awesome! Thank you for that. The intent is to create the array to be inclusive of all sheets marked yes. So in your example above, if sheets 2 and 5 are marked yes, then that would be the correctly created array Initially there will be no sheets marked yes, so no array will be created. Once I finish with this, I will need to reach out again, as I will have to take a formula I have that currently does the same thing with 50 different sheets and combine a version of this formula if we can get it working to create the array from those 50 sheets plus these 10 (those that are marked "Yes")
 
Upvote 0
So in your example above, if sheets 2 and 5 are marked yes, then that would be the correctly created array Initially there will be no sheets marked yes

Before applying the following formula, to make it shorter, ideally you would create 2 named ranges for each sheet.
For example, for sheet1, the named range for cell P13 would be p_1, for the same sheet1, the named range for cells A50:C73 would be co_1
for sheet2, the named range for cell P13 would be p_2, for the same sheet2, the named range for cells A50:C73 would be co_2
And so on...

In the following formula I put you up to sheet 4, do the same up to sheet 10:
Excel Formula:
=LET(x,APILARV(SI(p_1="Yes",co_1,""),SI(p_2="Yes",co_2,""),SI(p_3="Yes",co_3,""),SI(p_4="Yes",co_4,"")),UNICOS(FILTRAR(x,INDICE(x,,1)<>"")))


----- --
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
----- --
 
Upvote 0
By the way, you can abbreviate this part of the formula:
...
like this:
Excel Formula:
LET(x,VSTACK('Change Order Worksheet:Change Order Worksheet (10)'!A50:C73),UNIQUE(FILTER(x,INDEX(x,,1)<>"")))
Very nice! I'm assuming that only works so long as there isn't some other sheet in between them.


In the following formula I put you up to sheet 4, do the same up to sheet 10:
Excel Formula:
=LET(x,APILARV(SI(p_1="Yes",co_1,""),SI(p_2="Yes",co_2,""),SI(p_3="Yes",co_3,""),SI(p_4="Yes",co_4,"")),UNICOS(FILTRAR(x,INDICE(x,,1)<>"")))

I didn't realize this was Spanish for a second and I was wondering where all these new formulas were coming from. :LOL:
 
Upvote 0
Very nice! I'm assuming that only works so long as there isn't some other sheet in between them.
It's right

didn't realize this was Spanish for a second and I was wondering where all these new formulas were coming from
Sorry about that, I forgot to translate them 😅

Here the correct formula:
Excel Formula:
=LET(x,VSTACK(IF(p_1="Yes",co_1,""),IF(p_2="Yes",co_2,""),IF(p_3="Yes",co_3,""),IF(p_4="Yes",co_4,"")),UNIQUE(FILTER(x,INDEX(x,,1)<>"")))

😇
 
Upvote 1
Solution
It's right


Sorry about that, I forgot to translate them 😅

Here the correct formula:
Excel Formula:
=LET(x,VSTACK(IF(p_1="Yes",co_1,""),IF(p_2="Yes",co_2,""),IF(p_3="Yes",co_3,""),IF(p_4="Yes",co_4,"")),UNIQUE(FILTER(x,INDEX(x,,1)<>"")))

😇
The Spanish threw me for a loop for a min lol. Thank you so much!
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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