Trying to index match across multiple sheets, need assistance
I am trying to index match across multiple sheets. Each sheet is specific to it's own project and I want to index certain values on a master tracker for all projects. Each sheet is broken down by site name and each site has it's own progression. The column name for the site is named Site ID and the column name for the progression is called Site Progression. I need to index the progression, but match the site ID's. Currently I have this formula I am trying:
=INDEX({ATC TMO CX Tracker Site Progression}, MATCH([Site ID]@row, {ATC TMO CX Tracker Site ID}, 0)), INDEX({MasTec CX Tracker Site Progression}, MATCH([Site ID]@row, {MasTec CX Tracker Site ID}, 0)), INDEX({SBA TMO CX Tracker Site Progression}, MATCH([Site ID]@row, {SBA TMO CX Tracker Site ID}, 0))
I can get it to work on one line (index matching to one sheet, however, I cannot figure out how to get this to work so that I can index match across multiple sheets. Is this even possible? Can anyone please help?
Answers
-
If the match is only true in one sheet you can combine the indexes with IFERROR. In other words start an IFERROR function, put one INDEX MATCH in it, in the value-if-error place put another IFERROR with the next INDEX MATCH and repeat. Essentially you will be trying an INDEX if no match is found the IFERROR will send you to the next INDEX. If no match there, the next will be tried, etc.
If there are matches on multiple sheets and you want to return them all in one cell, you can use JOIN COLLECT.
-
Thank you for this, I will give it a go and see if I can get it working!
-
For any that may come here for a solution, this is what I ended up getting to work:
=IFERROR(INDEX({Site Progression Helper Range 1}, MATCH(Project@row, {Site Progression Helper Range 2}, 0)), IFERROR(INDEX({Site Progression Helper Range 3}, MATCH(Project@row, {Site Progression Helper Range 4}, 0)), IFERROR(INDEX({Site Progression Helper Range 5}, MATCH(Project@row, {Site Progression Helper Range 6}, 0)), "")))
-
Looks good @tblocker , glad I could help
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
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!