Need help with Index Match function

teejayj

New Member
Joined
Aug 25, 2014
Messages
1
I have data array in A2 to AF 1843 and I wish to match additional data to it which is in data array A1900 to F5066. Typically I would use a vlookup. But I need to match at least two data elements to make a correct match.

Here is the function I wrote. I press the CTrl /Shift and Enter keys to get the braces. But the braces do not appear.

=INDEX(D$1900:F$5066,MATCH(1,(D$1900:D$5066=D43)*(H$1900:H$5066=H43),0),2).

I cannot determine why it is not working .
Any assistance is appreciated.

I've tried attaching a screenprint to not avail. So here is a link to the JPG.
https://drive.google.com/file/d/0B3FqMThxGdtaN2tHencyNkFEemM/edit?usp=sharing
 
Try this.
Click on cell that has your formula.
press F2 for edit mode
Then press CTRL-SHIFT-ENTER and you should see the braces.

Also I tried your formula and it worked for me.
 
Upvote 0
Try:

Code:
=INDEX(D$1900:F$5066,MATCH(D43&H43,D$1900:D$5066&H$1900:H$5066,0))

Use CTRL+SHIFT+ENTER ;)
 
Upvote 0

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