Index/Match Question

Hi Smartsheet Community,
I am trying to use INDEX/MATCH formula. It works for me for only reference to an another smartsheet. Is it possible to reference 2 smart sheet for INDEX and MATCH?
I know I can do for reference 1 smart sheet
= INDEX({reference 1 from smart sheet A}, MATCH(@row,{reference 1 from smartsheet A},0))
However, can I do reference 2 smartsheet? I don't know how it works.
= INDEX({reference 1 from smart sheet A}{reference 2 from smart sheet B}, MATCH(@row,{reference 1 from smartsheet A}{reference 2 from smart sheet B},0))
Thank you
Best Answer
-
You will need to write both out individually and then combine them using an IFERROR.
=IFERROR(INDEX({1st sheet}, MATCH(@row, {1st sheet}, 0)), INDEX({2nd Sheet}, MATCH(@row, {2nd Sheet}, 0)))
Answers
-
You will need to write both out individually and then combine them using an IFERROR.
=IFERROR(INDEX({1st sheet}, MATCH(@row, {1st sheet}, 0)), INDEX({2nd Sheet}, MATCH(@row, {2nd Sheet}, 0)))
-
Hi Paul,
Thank you for your response. I tried the the IFERROR multiple time, it doesnt seems to work. It showed incorrect argument set.
-
Are you able to copy/paste the exact formula you are using that is throwing the error?
-
Hi Paul,
It works perfectly now. I forgot to at @row. Everything it's good. Thank you so much for your help.