Nested INDEX/MATCH formula for conditional cross-sheet reference use case
I am currently using the following INDEX/MATCH formula to return values from the sheet labeled "Tech Project List" in the reference.
=INDEX({Summary from Tech Project List}, MATCH([Tech List Row ID]@row, {Project ID from Tech Project List}, 0))
I now want to expand that formula to include a condition: If #NO MATCH on Tech Project List, then do the same INDEX/MATCH formula but instead reference "Tech Cancelled List."
What would that formula structure look like?
This may be obvious but for context: I am mainly sourcing my information from Tech Project List, the sheet where our proposed/active Tech PMO projects live. The problem is when project rows change to Cancelled status, the Tech Project List has an automation to send those rows I was referencing with my formula to the Cancelled List sheet.
Best Answers
-
Hi @Victoria Anzalone,
I’d use the IFERROR Function to do this - so, when the formula would return an error because there’s not a match in the Tech Project List sheet, we can tell it to index the Tech Cancelled List sheet instead, by providing the alternate INDEX(MATCH) formula within the IFERROR formula. So, where your existing formula is:
- =INDEX({Summary from Tech Project List}, MATCH([Tech List Row ID]@row, {Project ID from Tech Project List}, 0))
We can change it to:
- =IFERROR(INDEX({Summary from Tech Project List}, MATCH([Tech List Row ID]@row, {Project ID from Tech Project List}, 0)), INDEX({Summary from Tech Cancelled List}, MATCH([Tech List Row ID]@row, {Project ID from Tech Project List}, 0)))
Essentially, we’ve repeated your INDEX(MATCH) formula again but with a different INDEX - that is, the {Summary from Tech Cancelled List} reference will be the column you want to return the value from on your Tech Cancelled List sheet. So, the formula will first check the Tech Project List sheet to see if the Row ID has a match - if it does, it’ll return the value from the Summary from the Tech Project List range, and if it doesn’t, it’ll check the Tech Cancelled List sheet and return the value from there instead.
Hope that helps!
Georgie
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Exactly what I was looking for. Thank you!
Answers
-
Hi @Victoria Anzalone,
I’d use the IFERROR Function to do this - so, when the formula would return an error because there’s not a match in the Tech Project List sheet, we can tell it to index the Tech Cancelled List sheet instead, by providing the alternate INDEX(MATCH) formula within the IFERROR formula. So, where your existing formula is:
- =INDEX({Summary from Tech Project List}, MATCH([Tech List Row ID]@row, {Project ID from Tech Project List}, 0))
We can change it to:
- =IFERROR(INDEX({Summary from Tech Project List}, MATCH([Tech List Row ID]@row, {Project ID from Tech Project List}, 0)), INDEX({Summary from Tech Cancelled List}, MATCH([Tech List Row ID]@row, {Project ID from Tech Project List}, 0)))
Essentially, we’ve repeated your INDEX(MATCH) formula again but with a different INDEX - that is, the {Summary from Tech Cancelled List} reference will be the column you want to return the value from on your Tech Cancelled List sheet. So, the formula will first check the Tech Project List sheet to see if the Row ID has a match - if it does, it’ll return the value from the Summary from the Tech Project List range, and if it doesn’t, it’ll check the Tech Cancelled List sheet and return the value from there instead.
Hope that helps!
Georgie
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Exactly what I was looking for. Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!