I have a source sheet of different items, rolling out on different dates for different stores. I am creating a target sheet of a rollout of one specific item. I want the target sheet to list all the stores on the source sheet, that meet the criteria. The formula below, works but for one row (one store).
INDEX(COLLECT({SOURCE SHEET STOREID}, {Spring Beverage Master Rollout Info Range 2}, "Y"), 1)
I want this to work for as many rows match the criteria. For this instance there are 136.
I got the join collect to work for all instances but it puts all the store numbers in one cell.
JOIN(COLLECT({SOURCE SHEET STOREID}, {Spring Beverage Master Rollout Info Range 2}, "Y"), ",").
Is there a way to return one store number for each row on my target sheet?