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), ""))
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:
...
-
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
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!