Index and Match - Excel says function has too many arguments

Sean15

Well-known Member
Joined
Jun 25, 2005
Messages
698
Office Version
  1. 2010
Platform
  1. Windows
col A col B col C
USA John Peter 12
Mexico JOHN Peter 20
FRA John C Peter 25


John Peter return value should be USA

INDEX($A$3:$A$5, MATCH(True, Exact(B8, $B$3:$B$5, 0))



This formula is suppose to return value from column A based on case sensitives lookup value in B8
But Excel says function has too many arguments. Could someone take a look please?

Regards

Sean
 
Last edited:

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
You are missing a ")" and need to confirm the formula with Ctrl+Shift+Enter
=INDEX($A$3:$A$5, MATCH(TRUE, EXACT(B8, $B$3:$B$5), 0))

or without C+S+E
=INDEX($A$3:$A$5, MATCH(TRUE, INDEX(EXACT(B8, $B$3:$B$5),0), 0))
 
Last edited:
Upvote 0
Thank you very much Marcelo Branco and Peter SS

Regards
Sean
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,148
Messages
6,123,305
Members
449,095
Latest member
Chestertim

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