IFERROR and OR

I have these two formulas in different columns:
=IFERROR(INDEX({Frame ECN Updates Range 2}, MATCH([ECN / PLR / FF / CEG]@row, {Frame ECN Updates Range 1}, 0)), "")
=(IFERROR(INDEX({Frame Feedback Updates Range 1}, MATCH([ECN / PLR / FF / CEG]@row, {Frame Feedback Updates Range 3}, 0)), ""))
Individually, they each output what I want them to output. However, I would like the formulas in the same column. How do I concatenate them properly?
Best Answer
-
Drop one of them into the "value if error" portion of the other's IFERROR function.
=IFERROR(INDEX(β¦β¦..,MATCH(β¦β¦β¦β¦.)), IFERROR(INDEX(β¦β¦β¦β¦, MATCH(β¦β¦β¦β¦..)), ""))
Answers
-
Drop one of them into the "value if error" portion of the other's IFERROR function.
=IFERROR(INDEX(β¦β¦..,MATCH(β¦β¦β¦β¦.)), IFERROR(INDEX(β¦β¦β¦β¦, MATCH(β¦β¦β¦β¦..)), ""))
Help Article Resources
Categories
Check out the Formula Handbook template!