Index/Match Help

spcalan

Well-known Member
Joined
Jun 4, 2008
Messages
1,247
I figured out the single lookups..
but now I need a double lookup.

I need to look up an employee AND "Strength" to find rating score.
Example : Employee = Alan, Analytical Value of 4

Worksheet: "Overall Strengths"
Column B is Employee Name
Row C ( Specifically C4 : AJ4) has lists of "Strengths"

Worksheet : "Database"
Column A = Employee Name
Column F = "Strengths"
Column E = Is the value I need
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
So are you grabbing a rating score for each strength in C4:AJ4?

you didnt explain but if you create an array formula you can lookup based on Strength and name... i assume strength is some string value in COLUMN C...

Code:
{=INDEX(Database!E:E,MATCH(1,(Database!A:A=B2)*(Database!F:F=C2),0)}
 
Upvote 0
Care to exactly specify the B cell and the C cell of Overall Strengths, housing the values you want to look up?
 
Upvote 0
Yes.
Looking up the employee name and strength and returning the value.

This makes sense ( i had to do a small modification)
=INDEX(Database!E:E,MATCH(1,(Database!A:A=B:B)*(Database!F:F=C4),0))

breakdown:
Database Column E is the score
Database Column A is the Employee Name that will match
Database Column F is the "Strength"Field

The name is the worksheet is "Scorecard
Column B is the Employee Name
Range C4:AJ4 is the list of "Strengths""

How can I upload a photo of the worksheet ?
 
Upvote 0
press print screen when you want to take a screen shot
open microsoft paint
paste (your screenshot is in the clipboard)
Crop
Save
www.imgur.com upload
then post here and use the insert image button... then paste the imgur link to the image file... ex. www.imgur.com/kjhgsk.jpg (notice this is a link to an image file, not some webpage)
 
Upvote 0
Maybe this helps:

Scorecard Column B = Employee Name - - - -- Database Column A
Scorecard Range C4:AJ4 = "Strengths""------- Database Column D
Value in in Database Column E
 
Upvote 0
https://i.imgur.com/y4lqAXC.jpg
https://i.imgur.com/2wXnHfi.jpg

you posted the wrong url, those are your images... now you use the insert image button...

QxA7LqI.png
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,982
Members
449,201
Latest member
Lunzwe73

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