Hi Team,
I need to insert an OR statement into the following formula. I would like to modify the formula to find one of two values, whichever it finds, populate. The current statement:
=INDEX(COLLECT({Interface Raw Data Range 1}, {Interface Raw Data Range 1}, CONTAINS([Interface Name]@row, @cell)), 1) - ***This formula works just fine, but doesn't include the "OR"***
If the formula finds either of the values "SAP AP Export notificationT17" or "SAP AP Export notificationT18", in the sheet "Interface Raw Data Range 1" it should populate the cell with the value it finds.
My attempt at this is below, however, that's resulting in #UNPARSEABLE. What could I be missing? Thanks!!
=INDEX(COLLECT({Interface Raw Data Range 1}, {Interface Raw Data Range 1}, IF(OR(CONTAINS("SAP AP Export notificationT17"@row, @cell)), 1),(CONTAINS(["SAP AP Export notificationT18"]@row, @cell)), 1)))