Index / match with several criteri

ekslit

New Member
Joined
Apr 10, 2020
Messages
48
Hello Guys,

I m trying to do Index / match with several criteria but the formula is not working.

VBA Code:
{=INDEX(PointageStructure!$G$2:$G$1000,MATCH(1,(D2=PointageStructure!$B$2:$B$1000)*("Sub-task"=PointageStructure!$C$2:$C$1000)*("Analyste"=PointageStructure!$M$2:$M$1000),0))}

Do you have any clue about the issue?

thanks again for your help.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Try

VBA Code:
{=INDEX(PointageStructure!$G$2:$G$1000,MATCH(1,(PointageStructure!$B$2:$B$1000=D2)*(PointageStructure!$C$2:$C$1000="Sub-task")*(PointageStructure!$M$2:$M$1000="Analyste"),0))}
 
Upvote 0
I got the problem.
I was having an extra space before A in my PointageStructure!$M$2:$M$1000 for "Analyste". i was looking for "Analyste" but if i change it to " Analyste" it works fine :)
 
Upvote 0

Forum statistics

Threads
1,215,358
Messages
6,124,487
Members
449,165
Latest member
ChipDude83

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