Index Match Question

TyeReece

Board Regular
Joined
Aug 3, 2007
Messages
136
I have the following formula that returns data but is returning the wrong data. I can't seem to see what is wrong with it. Any help is appreciated.

=IF(ISERROR(INDEX(ALPSTable,MATCH(1,IF($C$11=ALPDates,IF($E$2=ALPSVNUM,1)),0),3)),0,INDEX(ALPSTable,MATCH(1,IF($C$11=ALPDates,IF($E$2=ALPSVNUM,1)),0),3))

In this formula $c$11 is a date (11/1/2016) and $E$2 is a vlookup formula that returns a vendor number (e.g., 0611121) based on a name that is selected from a drop down list is cell a2. The data that gets returned seems to be from a close vendor number but not the correct one. For example if I select vendor "Fred's Bank" which has the vendor number 0611121 the data that gets returned is for vendor # 0611125. Any ideas as to what is wrong with this?
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Your formula is an "array formula" that needs to be confirmed with CTRL+SHIFT+ENTER, or try this "non-array" version

=IFERROR(INDEX(ALPSTable,MATCH(1,INDEX(($C$11=ALPDates)*($E$2=ALPSVNUM),0),0),3),0)
 
Last edited:
Upvote 0
Yes. I have 11 other cells in the array as I am using it to create a line graph for a dashboard. When I enter the non array version it still gives the same wrong data.
 
Upvote 0
The formula relies on all the named ranges starting on the same row, so I'd check how ALPSTable, ALPDates and ALPSVNUM are defined - do they all start from the same row?
 
Upvote 0
ALPSTable is the entire table of the ALPS data. There are five columns in the table. Vendor Number/Date/Sumofontime/countofontime/Percentage. ALPDates is the column "Date" and ALPSVNUM is the column "Vendor Number". So if I understand your question correctly, then yes they do start on the same row.
 
Upvote 0
Without actually seeing your data then mismatched ranges seems the only likely cause to me - does the whole table contain the headers and the other ranges not? In that case then you'd probably get the result from a row below where it should be.

For debugging purposes I would try the same formula using actual cell references and see if that works
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,772
Members
452,353
Latest member
strainu

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