Hey all, so in theory this seems doable, but I can't figure out. I have a range with some data from which I'd like to compare two columns in a range to two separate columns in another range and extract result based on the matches. I'm able to use a combination of Filter, ISNUMBER, and Xmatch to extract results when only looking at 1 column but can't do it with 2.
I'm looking at a range of data similar to this one:
I'd like to compare that range to this list:
To get these results:
Can this be accomplished with a single cell formula?
I'm looking at a range of data similar to this one:
Book1 | |||||
---|---|---|---|---|---|
A | B | C | |||
1 | Name | City | Amount | ||
2 | John | NYC | 100 | ||
3 | Payne | MA | 200 | ||
4 | Austin | UT | 300 | ||
5 | John | NC | 400 | ||
6 | Payne | NJ | 400 | ||
7 | Brandon | CA | 200 | ||
8 | Ty | CO | 500 | ||
9 | Brandon | NE | 100 | ||
10 | John | WA | 100 | ||
11 | Autin | ID | 500 | ||
Sheet1 |
I'd like to compare that range to this list:
Book1 | ||||
---|---|---|---|---|
J | K | |||
1 | Name | City | ||
2 | John | NYC | ||
3 | Payne | MA | ||
4 | Austin | UT | ||
5 | Brandon | CA | ||
6 | Ty | CO | ||
7 | John | WA | ||
8 | Autin | ID | ||
Sheet1 |
To get these results:
Book1 | |||||
---|---|---|---|---|---|
F | G | H | |||
1 | Name | City | Amount | ||
2 | John | NYC | 100 | ||
3 | Payne | MA | 200 | ||
4 | Austin | UT | 300 | ||
5 | Brandon | CA | 200 | ||
6 | Ty | CO | 500 | ||
7 | John | WA | 100 | ||
8 | Autin | ID | 500 | ||
Sheet1 |
Can this be accomplished with a single cell formula?