IFERROR with Index / Match from 3 sheets.

Hi All,

Trying to search value from 3 sheets and using IFERROR with Index / Match and am getting Incorrect Argument error.

=IFERROR(IFERROR(IFERROR(INDEX({Project Intake Project Name}, MATCH([Project ID]@row, {Project Intake Project ID}, 0))), INDEX({Completed Project Name}, MATCH([Project ID]@row, {Completed Project ID}, 0))), INDEX({Inactivated project Name}, MATCH([Project ID]@row, {Inactivated Project ID}, 0))

Thanks in advance,

Answers

  • Carson Penticuff
    Carson Penticuff ✭✭✭✭✭✭
    edited 11/12/24

    You need one more closing parenthesis at the end.

    Edit:

    After looking a little closer, I believe there are a few structural issues. Give this one a try:

    =IFERROR(IFERROR(INDEX({Project Intake Project Name}, MATCH([Project ID]@row, {Project Intake Project ID}, 0)), INDEX({Completed Project Name}, MATCH([Project ID]@row, {Completed Project ID}, 0))), INDEX({Inactivated project Name}, MATCH([Project ID]@row, {Inactivated Project ID}, 0)))

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!