index and matching 2 colums and 1 rows

shahdelsol

Active Member
Joined
Jul 21, 2009
Messages
276
Office Version
  1. 365
Platform
  1. Windows
I am trying to use index/match when 2 matches found in columns, perfrom row match. I have tried these 2 functions but they are not working.
For your infromation , A2 and A:A column content is date and same date could be found in several cells.

Code:
=INDEX(LIST!I:M,MATCH(1,($A$2=LIST!A:A)*(D3=LIST!B:B)*(L2=LIST!I2:M2),0))
Code:
INDEX(LIST!I:M,MATCH($A$2=LIST!A:A,0),MATCH(D3,LIST!B:B,0),MATCH($L$2,LIST!$I$2:$M$2,0))

Can anyone help what I am doing wrong here?
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

Assuming you have MS365 and that you want the figure from a specific column and using your current formula, I would expect it to look more like this:
Excel Formula:
=INDEX(LIST!I:M,
               MATCH(1,($A$2=LIST!A:A)*(D3=LIST!B:B),0),
               MATCH(L2,LIST!I2:M2,0))
 
Upvote 0
Solution
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

Assuming you have MS365 and that you want the figure from a specific column and using your current formula, I would expect it to look more like this:
Excel Formula:
=INDEX(LIST!I:M,
               MATCH(1,($A$2=LIST!A:A)*(D3=LIST!B:B),0),
               MATCH(L2,LIST!I2:M2,0)
[/QUOTE]

What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

Assuming you have MS365 and that you want the figure from a specific column and using your current formula, I would expect it to look more like this:
Excel Formula:
=INDEX(LIST!I:M,
               MATCH(1,($A$2=LIST!A:A)*(D3=LIST!B:B),0),
               MATCH(L2,LIST!I2:M2,0))
Thank you so much. This worked!
 
Upvote 0

Forum statistics

Threads
1,215,314
Messages
6,124,204
Members
449,147
Latest member
sweetkt327

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