Using the following formula to pull values from a source sheet, when it matches a cell in my current sheet.
=IFERROR(INDEX(COLLECT({eITCR # (Open)}, {eITCR - Open AI}, HAS([InfoCard Number]@row, @cell )), 1), INDEX(COLLECT({eITCR # (Closed)}, {eITCR - Closed AI}, HAS([InfoCard Number]@row, @cell )), 1))
The issue I have is that the referenced cell for {eITCR - Open AI} column, sometimes has more than 1 value in the cell separated by a comma. e.g. AI-2021-0123, AI-2021-0125
My formula returns the value if 1 value is in the cell, but pulls a #invalid value if not.
I've tried JOIN(COLLECT), which brings blank values rather than #invalid value and INDEX(MATCH) which brings back #no match.
Any suggestions?