Index Match Error with date range

SAXON10

Board Regular
Joined
Jun 1, 2017
Messages
109
Good afternoon,

I am trying to apply the following formula in B17=IFERROR(INDEX($B$2:$F$11,MATCH($B16,$B$1:$F$1,0),MATCH($A17,$A$2:$A$11,0)),"") but i got error.

How to fix the error. Please help me.

Data range: A1:F11

DATA;
[TABLE="width: 536"]
<colgroup><col><col><col><col><col><col></colgroup><tbody>[TR]
[TD]DATE[/TD]
[TD]UK[/TD]
[TD]US[/TD]
[TD]EU[/TD]
[TD]ASIA[/TD]
[TD]CHINA[/TD]
[/TR]
[TR]
[TD]01/01/2018[/TD]
[TD]10[/TD]
[TD]11[/TD]
[TD]12[/TD]
[TD]1[/TD]
[TD]14[/TD]
[/TR]
[TR]
[TD]02/01/2018[/TD]
[TD]34[/TD]
[TD]35[/TD]
[TD]36[/TD]
[TD]25[/TD]
[TD]38[/TD]
[/TR]
[TR]
[TD]03/01/2018[/TD]
[TD]58[/TD]
[TD]59[/TD]
[TD]60[/TD]
[TD]49[/TD]
[TD]62[/TD]
[/TR]
[TR]
[TD]04/01/2018[/TD]
[TD]82[/TD]
[TD]83[/TD]
[TD]84[/TD]
[TD]73[/TD]
[TD]86[/TD]
[/TR]
[TR]
[TD]05/01/2018[/TD]
[TD]106[/TD]
[TD]107[/TD]
[TD]108[/TD]
[TD]97[/TD]
[TD]110[/TD]
[/TR]
[TR]
[TD]06/01/2018[/TD]
[TD]130[/TD]
[TD]131[/TD]
[TD]132[/TD]
[TD]121[/TD]
[TD]134[/TD]
[/TR]
[TR]
[TD]07/01/2018[/TD]
[TD]154[/TD]
[TD]155[/TD]
[TD]156[/TD]
[TD]145[/TD]
[TD]158[/TD]
[/TR]
[TR]
[TD]08/01/2018[/TD]
[TD]178[/TD]
[TD]179[/TD]
[TD]180[/TD]
[TD]169[/TD]
[TD]182[/TD]
[/TR]
[TR]
[TD]09/01/2018[/TD]
[TD]202[/TD]
[TD]203[/TD]
[TD]204[/TD]
[TD]193[/TD]
[TD]206[/TD]
[/TR]
[TR]
[TD]10/01/2018[/TD]
[TD]226[/TD]
[TD]227[/TD]
[TD]228[/TD]
[TD]217[/TD]
[TD]230[/TD]
[/TR]
</tbody>[/TABLE]

RESULT;

[TABLE="width: 536"]
<colgroup><col><col><col><col><col><col></colgroup><tbody>[TR]
[TD]DATE[/TD]
[TD]UK[/TD]
[TD]US[/TD]
[TD]EU[/TD]
[TD]ASIA[/TD]
[TD]CHINA[/TD]
[/TR]
[TR]
[TD]05/02/2018[/TD]
[TD]106[/TD]
[TD]107[/TD]
[TD]108[/TD]
[TD]97[/TD]
[TD]110[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Maybe this:

=IFERROR(INDEX($B$2:$F$11,MATCH($A17,$A$2:$A$11,0),MATCH(B$16,$B$1:$F$1,0)),"")

Markmzz
 
Last edited:
Upvote 0
SAXON10, Good morning.

You changed the position of the row argument with the column argument.
Only that.

Try to use:
Code:
=IFERROR(INDEX($B$2:$F$11,MATCH($A$17,$A$2:$A$11,0), MATCH(B$16,$B$1:$F$1,0)),"")
Detailing:

Row--> MATCH($A$17,$A$2:$A$11,0)

Column --> MATCH(B$16,$B$1:$F$1,0)

Attention where to put the sign of $

Is that what you want?
I hope it helps you.
 
Upvote 0
Another formula with the same result (with your example):

=IFERROR(VLOOKUP($A17,$A$2:$F$11,MATCH(B$16,$A$1:$F$1,0),0),"")

Markmzz
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,875
Members
452,363
Latest member
merico17

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