VLOOKUP with multiple data sets/outputs

Sa1l0rJ3rry

New Member
Joined
Jan 23, 2019
Messages
5
Good morning. I don't even really know if VLOOKUP is the formula I need but here's what I'm trying to do.

On sheet 1 I have a list of names in column A. In columns B through T I have a list of training courses. Something like this:

Course 1
Course 2
Course 3
Course 4
Course 5
Course 6
Course 7
Course 8
Adams








Anderson








Borse








Calloway








Fanta








<tbody> </tbody>



On sheet 2 I have a report which lists every course thosepeople have ever completed and looks something like this:


Adams
Course 11132
1/1/2019
Adams
Course 21657
1/1/2019
Adams
Course 21565
1/1/2019
Anderson
Course 11132
1/1/2019
Anderson
Course 21657
1/1/2019
Anderson
Course 55525
1/1/2019
Borse
Course 11132
1/1/2019
<tbody> </tbody>




What I’m trying to do is insert a formula on sheet 1 next toany given name that checks sheet 2 for that name, then when it finds it, checksfor that course. If it finds the courseit displays the date of completion. If it does not find it, it displayssomething like “Not Completed”


As you can see from the table, multiple people will have thesame courses listed, so I need the formula to correlate the name to the coursenumber somehow without returning a false positive.




 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
As long as the courses on sheet2 match the headers on sheet1 try


Excel 2013/2016
ABCDEFGHI
1Course 1Course 2Course 3Course 4Course 5Course 6Course 7Course 8
2Adams01/01/201901/01/2019NoneNoneNoneNoneNone01/01/2019
3AndersonNoneNoneNone01/01/2019None01/01/201901/01/2019None
4BorseNoneNone01/01/2019NoneNoneNoneNoneNone
5CallowayNoneNoneNoneNoneNoneNoneNoneNone
6FantaNoneNoneNoneNoneNoneNoneNoneNone
Sheet1
Cell Formulas
RangeFormula
B2{=IFERROR(INDEX(Sheet2!$C$2:$C$8,MATCH(1,(Sheet2!$A$2:$A$8=$A2)*(Sheet2!$B$2:$B$8=B$1),0)),"None")}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Thank you for the reply. I can add a row on sheet 1 that lists the course exactly as it appears on sheet 2 to make this work. I am super new to excel formulas, could you break this formula down a bit for easier understanding?
 
Upvote 0
The part in red is the value to return if a match is found.
The first part in purple returns a value of true or false if the value in sheet2 matches A2 on sheet1
The second part in purple does the same but looking to match the course rather than the name.
The * is the equivalent of AND, which also turns the true or false into 1 or 0

If you goto select a cell containing the formula & select the formula tab > Evaluate formula, you can step through the calculation to see what happens.
 
Upvote 0
So this is where I messed up. I overestimated my abilities. I tried to keep my example as simple as possibleand didn’t use the exact layout of my particular excel sheet. I figured I couldjust modify your answer and apply it, but my lack of knowledge about excelfunctions is apparently very extensive. Lol.

So for clarity, here are the exact boxes in which each piece of information islisted:


Where I need the formula: Sheet 1, Columns D through Q. Each column is a different course, each rowis a new name. (254 Rows)
Where the data is being pulled from: Sheet 2, Column C(Course name) and Column D (Course completion date).

I’ve made a new row (Sheet 1 Row 2, Columns D though Q) inwhich to reference the exact course name to match it from sheet 2.

Hopefully, I haven’t made this more confusing. Thank you somuch for your time.

 
Upvote 0
Where are the names in sheet1?
 
Upvote 0
With sheet2 like


Excel 2013/2016
ABCD
1NameCourseDate
2AdamsCourse 101/01/2019
3AdamsCourse 201/01/2019
4AdamsCourse 801/01/2019
5AndersonCourse 401/01/2019
6AndersonCourse 601/01/2019
7AndersonCourse 701/01/2019
8BorseCourse 301/01/2019
Sheet2


and sheet1 like


Excel 2013/2016
ABCDEFGHIJK
1
2Course 1Course 2Course 3Course 4Course 5Course 6Course 7Course 8
3Adams01/01/201901/01/2019NoneNoneNoneNoneNone01/01/2019
4AndersonNoneNoneNone01/01/2019None01/01/201901/01/2019None
5BorseNoneNone01/01/2019NoneNoneNoneNoneNone
6CallowayNoneNoneNoneNoneNoneNoneNoneNone
7FantaNoneNoneNoneNoneNoneNoneNoneNone
Sheet1
Cell Formulas
RangeFormula
D3{=IFERROR(INDEX(Sheet2!$D$2:$D$8,MATCH(1,(Sheet2!$A$2:$A$8=$A3)*(Sheet2!$C$2:$C$8=D$2),0)),"None")}
Press CTRL+SHIFT+ENTER to enter array formulas.


Put the formula in D3 confirm with CSE to get the {} then fill down & across
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,151
Messages
6,123,319
Members
449,094
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