I have two sheets within my excel file. They are Data and Manifest. The Data sheet contains three columns (File Name, Market and #). The Manifest sheet has multiple columns.
Data
| File Name |
Market |
# |
| Bob1 |
ar-sa |
24 |
| Bob2 |
ar-sa |
25 |
| Bob3 |
de-de |
24 |
| Bob4 |
nl-nl |
26 |
| James1 |
ar-sa |
25 |
| James2 |
de-de |
24 |
| James3 |
de-de |
26 |
| James4 |
nl-nl |
24 |
| Bob1 |
de-de |
25 |
| Bob1 |
nl-nl |
26 |
Manifest
| File Name |
ar-sa |
de-de |
nl-nl |
| Bob1 |
|
|
|
| Bob2 |
|
|
|
| Bob3 |
|
|
|
| Bob4 |
|
|
|
| James1 |
|
|
|
| James2 |
|
|
|
| James3 |
|
|
|
| James4 |
|
|
|
What I am trying to do is to fill in the Manifest sheet for each row and column header with the corresponding number from the Data sheet.
I have tried using Index with Match, but I am missing something.
=INDEX(Data!$C:$C,MATCH(A$2,Data!$A:$A,0),MATCH($B1,Data!$B:$B,0))
Is there something I'm missing? Is there an easier way to solve this problem?
Thank you for your assistance!
-Brian