I am using an Index/Match formula to pull contact info from a Team List smartsheet into a Schedule smartsheet. For the most part it works just fine. In the Team List smartsheet I have a column named "Trade" set up as a Multi Select dropdown. In the Schedule smartsheet I have a column also named trade and it is set up as a Single Select dropdown. The Index/Match formula uses the Trade column in the Schedule to look for a match in the Team List Trade column and return the data from another cell on that line. It works well if only one selection was made in the Trade column in the Team List. If more than one selection was made on the Team List, the formula returns "#NO MATCH." This is the Index/Match formula I'm using: =IF(ISBLANK(Trade@row), " ", INDEX({Sub}, MATCH(Trade@row, {Trade}, 0))). Changing the search Type results in incorrect info.
Can this formula be tweaked to work, or is there another formula type that will work better in this scenario?