Index Match with 2 conditions

Expal2018

New Member
Joined
Mar 20, 2018
Messages
4
Hi,

Having an issue with an index match and adding multiple criteria, think it has to be an array but not sure.
Here's the basic index match.

=INDEX('GR 12032018'!C:C,MATCH(B13,'GR 12032018'!G:G))

I need to add a second criteria

=INDEX('GR 12032018'!D:D,MATCH(A13,'GR 12032018'!G:G))

How do i go about merging these?

Thanks
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Sorry, badly phrased question.
I want pull the result from the index where both conditions are met so would be in the same formulae some how.
The index is the name of the campaign, the top index value is for the phone number, the bottom index is value is for the time of the phone call.
 
Upvote 0
Sorry, badly phrased question.
I want pull the data from the index where both of the following criteria are met.
(B13,'GR 12032018'!G:G) and (A13,'GR 12032018'!D:D) in the same formula

The index is the name of a client, the G:G is the telephone number and the D:D is the time and date of the call.
Not sure if its an array or if function i'm after
 
Upvote 0
Control+shift+enter...

=INDEX('GR 12032018'!C:C,MATCH(1,IF('GR 12032018'!D:D=A13,IF('GR 12032018'!G:G=B13,1)),0))

Try to avoid the whole column references though for reasons of efficiency.
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

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