I have an IFERROR formula that is working correctly., However, I was wondering if it was possible to add an additional IFERROR option. So, for instance, This formula works perfectly:
=IFERROR(INDEX({EventTitle}, MATCH([WE ID#]@row, {ID}, 0)), INDEX({EventTitleComp}, MATCH([WE ID#]@row, {IDComp}, 0)))
My only problem is that I was hoping to add an additional value of N/A, or even just blank, if the formula was still returning a #NO MATCH error. There are some WE ID#'s that are on my current sheet that will not be found on either sheet that the formulas are referencing.
So is it possible to add another option to the end? IE:
=IFERROR(INDEX({EventTitle}, MATCH([WE ID#]@row, {ID}, 0)), INDEX({EventTitleComp}, MATCH([WE ID#]@row, {IDComp}, 0)), "N/A")))
Thank you all for your help!