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

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    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)))

    Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!

    CERTIFIED SMARTSHEET PLATINUM PARTNER

    10xViz.com

Answers