Iferror Index Match - Error

Enzo_Matrix

Board Regular
Joined
Jan 9, 2018
Messages
113
This is a similar post to my original request but I need some additional help with it and the original post has fizzled into the back pages of the message board. I do apologize. Original Post: https://www.mrexcel.com/forum/excel-questions/1051180-iferror-index-match-error.html

I created this formula so that I can use 2 separate columns in my index search, but I can't get it to work for 4 columns. The number of columns that is referencing the same index might increase as our inventory expands.


Is it possible to add to the below code to accommodate a 3rd and 4th match or is there a VBA option that can be used in it's place?
Code:
=IFERROR(INDEX(Data!$A$3:$A$31,IFERROR(MATCH($I5,Data!$I$3:$I$31,0),MATCH($I5,Data!$L$3:$L$18,0))),"Try Again!")
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
you can do sum(iferror(Match(case 1),0),iferror(Match(case2),0),iferror(Match(case3),0),iferror(Match(case4),0) Can use array formula instead as well.

with vba, you can just do a .find on I5 value in the range you are looking for, but essentially you are doing the same thing.
 
Upvote 0
See reply in your original post.

https://www.mrexcel.com/forum/excel-questions/1051180-iferror-index-match-error.html
 
Upvote 0

Forum statistics

Threads
1,214,534
Messages
6,120,080
Members
448,943
Latest member
sharmarick

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top