Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

How can I use Index Match Match

I am trying to use index match to pull a contact name from the last person who worked on the project.

This one works which is on the same page but I need a version from a different page

=INDEX([ASSIGNED ENGINEER]@row, MATCH([JOB NAME]@row, ""), MATCH([JOB NAME]@row, ""))

Im following the same rules index the Range of people and match the same Columns to pull any name that is there

=INDEX({APN/DFA COMPLETED Range 3}, MATCH({APN/DFA COMPLETED Range 2}, ""), MATCH({APN/DFA COMPLETED Range 2}), "")

I also tried this using the job name on the page im currently on

=INDEX({APN/DFA COMPLETED Range 3}, MATCH({APN/DFA COMPLETED Range 2}, ""), MATCH([JOB NAME]@row), ""))

Tags:

Answers

  • ✭✭✭✭✭

    You are missing the last Match arguement, zero for exact match.

    …MATCH([JOB NAME]@row, "",0)…

    ...

  • So like this

    =INDEX({APN/DFA COMPLETED Range 3}, MATCH({APN/DFA COMPLETED Range 2{APN/DFA COMPLETED Range 4}}, ""), MATCH([JOB NAME]@row), "", 0 ))

    that does not work

  • ✭✭✭✭✭

    Paul N made a suggestion when matching multiple criteria. Use Index Collect instead:

    How to Index Match

    ...

  • I did try that as well,I want it to pull a name from the same JOB name

    =INDEX(COLLECT([ASSIGNED ENGINEER]@row, [JOB NAME]@row, "", [JOB NAME]@row, ""), 1)

    =INDEX(COLLECT({APN/DFA COMPLETED Range 3}, [JOB NAME]@row, "", {APN/DFA COMPLETED Range 4,""}), 1)

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!

Trending in Formulas and Functions