Hi,
I'm currently trying to figure out if I am able to do a lookup based on matching two pieces of horizontal information.
Sheet one (Order form) has colums headed Product, Store, Min, Max
Sheet two (Weighting) is a table with the product at the top and the store as the row header, with the max (which I am looking for) as the data.
Is there a formula I can use to do this? I thought an IF formula but I believe nesting is limited to 7, and I have 10 products and 173 stores.
Sheet one looks like this (but more rows)
<tbody>
</tbody>
Sheet 2 looks a little like this (more rows)
<tbody>
</tbody>
Thanks in advance
I'm currently trying to figure out if I am able to do a lookup based on matching two pieces of horizontal information.
Sheet one (Order form) has colums headed Product, Store, Min, Max
Sheet two (Weighting) is a table with the product at the top and the store as the row header, with the max (which I am looking for) as the data.
Is there a formula I can use to do this? I thought an IF formula but I believe nesting is limited to 7, and I have 10 products and 173 stores.
Sheet one looks like this (but more rows)
Product | Store | Min | Max |
A | 1 | 2 | |
B | 1 | 2 | |
B | 2 | 2 | |
C | 2 | 2 | |
D | 2 | 2 | |
D | 3 | 2 | |
E | 1 | 2 | |
E | 3 | 2 | |
E | 4 | 2 | |
F | 6 | 2 | |
G | 2 | 2 | |
H | 5 | 2 | |
I | 3 | 2 | |
I | 6 | 2 | |
J | 2 | 2 |
<tbody>
</tbody>
Sheet 2 looks a little like this (more rows)
Store | A | B | C | D | E | F | G | H | I | J |
1 | 2 | 4 | 4 | 3 | 4 | 2 | 3 | 3 | 3 | 4 |
2 | 2 | 4 | 3 | 3 | 4 | 2 | 4 | 2 | 4 | 2 |
3 | 4 | 4 | 3 | 3 | 2 | 2 | 4 | 3 | 4 | 2 |
4 | 3 | 2 | 2 | 3 | 3 | 2 | 2 | 3 | 2 | 3 |
5 | 4 | 3 | 2 | 3 | 2 | 2 | 3 | 3 | 2 | 2 |
6 | 2 | 3 | 2 | 3 | 2 | 2 | 3 | 3 | 3 | 2 |
<tbody>
</tbody>
Thanks in advance