How to create an Index Match Formula for multiple sheets?
Hi,
I am currently trying to create an Index Match function which will be able to search multiple sheets (5 to 6 separate sheets) for the correct information.
The destination sheet has two columns that it will look at.
- A "TIDC" column where staff members place a ticket code
- An "Assigned to" column, which is a contact list column
If I were just looking at one sheet the formula would look something like:
=INDEX({Sheet1 Assigned To},MATCH(TIDC@row,{Sheet1 TIDC},0))
I have tried to stack IFERRORs as well as nest IF formulas but it does not seem to function properly.
Any help would be very much appreciated.
Thank you,
Nicholas
Best Answer
-
Stacking IFERRORS would look like this:
=IFERROR(IFERROR(IFERROR(INDEX({Sheet1 Assigned To},MATCH(TIDC@row,{Sheet1 TIDC},0)), INDEX({Sheet2 Assigned To},MATCH(TIDC@row,{Sheet2 TIDC},0))), INDEX({Sheet3 Assigned To},MATCH(TIDC@row,{Sheet3 TIDC},0))), INDEX({Sheet4 Assigned To},MATCH(TIDC@row,{Sheet4 TIDC},0)))
Answers
-
Stacking IFERRORS would look like this:
=IFERROR(IFERROR(IFERROR(INDEX({Sheet1 Assigned To},MATCH(TIDC@row,{Sheet1 TIDC},0)), INDEX({Sheet2 Assigned To},MATCH(TIDC@row,{Sheet2 TIDC},0))), INDEX({Sheet3 Assigned To},MATCH(TIDC@row,{Sheet3 TIDC},0))), INDEX({Sheet4 Assigned To},MATCH(TIDC@row,{Sheet4 TIDC},0)))
-
Thank you @Paul Newcome !
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!