I need to match A2 and D2 (in a sheet called "5.12") - against Sheet1, (A2 against Column B, and D against Column F)
This will go down for several hundred lines.
I appreciate the easy solution would be to add a column combing the two and then matching that, but the sheet directly gets pulled into an Access database so I cannot fiddle with the format
So in effect (in real terms) I will have a Category Number (for example 12345) which will have 20 or so lines of data in the Master Sheet, one for each specific, (Colour, Weight, Size etc)
If I use Index Match one one value it obviously only picks up the first match. I have tried to do INDEX MATCH MATCH on 2 columns, on 2 values in the same row, but it does not seem to like it.
Any help appreciated!
(For reference I have tried
This will go down for several hundred lines.
I appreciate the easy solution would be to add a column combing the two and then matching that, but the sheet directly gets pulled into an Access database so I cannot fiddle with the format
So in effect (in real terms) I will have a Category Number (for example 12345) which will have 20 or so lines of data in the Master Sheet, one for each specific, (Colour, Weight, Size etc)
If I use Index Match one one value it obviously only picks up the first match. I have tried to do INDEX MATCH MATCH on 2 columns, on 2 values in the same row, but it does not seem to like it.
Any help appreciated!
(For reference I have tried
Excel Formula:
=INDEX(RawData!I:I,MATCH(A2,RawData!B:B,0),MATCH(D2,RawData!F:F,0))
SHEET 5.12 | Column A - Batch | Column B - Cat_Number | Column D - Cat_Detail | Column E (Result of INDEX MATCH) |
Row 1 | 1000 | 12345 | Colour | Blue |
Row 2 | 1000 | 12345 | Weight | 1.5 |
Row 3 | 1000 | 12345 | Shape | Square |
Row 4 | 1000 | 23456 | Colour | White |
Row 5 | 1000 | 23456 | Weight | 2.0 |
Row 6 | 1000 | 23456 | Shape | Round |
RawData | Column A | Column B - Category No | Column F - Cat Details | Column I - (Data that needs to be pulled from Index Match) |
Row 1 | 12345 | Colour | Blue | |
Row 2 | 12345 | Shape | Square | |
Row 3 | 34564 | Colour | Purple | |
Row 4 | 12345 | Weight | 1.5 | |
Row 5 | 23456 | Colour | White | |
Row 6 | 23456 | Weight | 2.0 | |
Row 7 | 34564 | Weight | 4.0 | |
Row 8 | 23456 | Shape | Round | |
Row 9 | 34564 | Shape | Triangle |