Hello,
We have a Supplier Dropdown with the name of each of our suppliers. I would like to create a formula that takes each of those values and goes out to another table (Supplier Directory) and returns the City, State, and Country of each of those suppliers.
I have the following formulas that look up the city, state, country, and join all of this together in a concatenated statement. It works perfect whenever there is only one supplier name, how can I make it work when there are a lot of them in the dropdown "Supplier Impacted".
City: =INDEX({Supplier Directory City}, MATCH([Supplier Impacted]@row , {Supplier Directory Supplier Name}, 0))
State: =INDEX({Supplier Directory State}, MATCH([Supplier Impacted]@row , {Supplier Directory Supplier Name}, 0))
Country: =INDEX({Supplier Directory Country Name}, MATCH([Supplier Impacted]@row , {Supplier Directory Supplier Name}, 0))
Statement: =[Supplier Impacted]@row + ": " + JOIN([Column22]@row :[Column23]@row , ", ") + " " + [Column24]@row