I am using the below formula that is working fine:
=IFERROR(IFERROR(INDEX({Sales_Parts_1_Description}, MATCH($[Supplier Part Number]@row, {Sales_Parts_1_PN}, 0)), INDEX({Sales_Parts_2_Description}, MATCH($[Supplier Part Number]@row, {Sales_Parts_2_PN}, 0))), "ERROR - CHECK PART #")
However, I want to add another INDEX statement. When I do, I get an #incorrect argument set error. Is the below even possible?
=IFERROR(IFERROR(INDEX({Sales_Parts_1_Description}, MATCH($[Supplier Part Number]@row, {Sales_Parts_1_PN}, 0)), INDEX({Sales_Parts_2_Description}, MATCH($[Supplier Part Number]@row, {Sales_Parts_2_PN}, 0)), INDEX({Sales_Parts_3_Description}, MATCH($[Supplier Part Number]@row, {Sales_Parts_3_PN}, 0)), "ERROR - CHECK PART #"))