Using Index in combination wth Match

MindManagement

New Member
Joined
Jan 13, 2016
Messages
8
I am using the table below to fill in the right value from another worksheet called "Call Rates".

A
B
1
Type Convesation
Fonzer
2
Belgium, Fixed
€ 0,02000
3

<tbody>
</tbody>

The Worksheet Call Rates looks like this
A
B
C
D
1
Fonzer
Fonzer+
Fonzer++
2
Belgium, Fixed
€ 0,02000
€ 0,01900
€ 0,01800
3
Belgium, Mobile
€ 0,08500
€ 0,06500
€ 0,04500
4

<tbody>
</tbody>

The formula I used in the first table where € 0,02000 is marked in red looks like :
=INDEX('Call Rates'!B2:B4;MATCH(B1&A2;'Call Rates'!B1:D1&'Call Rates'!A2:A4;0))
After that I press Shift+CTRL+Enter
But i get an error saying "# Value".
I used an example from the internet where they looked up a value based on 2 criteria, same as I would like to do.
If I write in the first table 1, in B1, Fonzer++ he should return the value € 0,01800 or Fonzer+ should result in € 0,01900.
But no, it returns the result #Value .
Can somebody tell me what's wrong on my formula ?
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
You actually want a regular formula rather than an array formula since your criteria are separate - one for the row, one for the column:

=INDEX('Call Rates'!B2:D4;MATCH(A2;'Call Rates'!A2:A4;0);MATCH(B1;'Call Rates'!B1:D1;0))
 
Upvote 0
Try
Code:
=INDEX('call rates'!B2:D3;MATCH(A2;'call rates'!A2:A3;0);MATCH(B1;'call rates'!B1:D1;0))
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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