Hello:
Trying to write a vlookup with 3 criteria, and although getting results for some values after a certain point the formula starts giving reference error !REF.
I have a table where I'm trying to find the price per unit when the org, product and cust type are matching from price sheet.
I've got this far with B2 = Product and A2 = Org ID; didn't add the 2nd Match condition as after about 120rows I started getting the reference error:
=VLOOKUP(B2,'[Price]PriceSheet'!$H$2:$J$47181,MATCH(A2,'[Price]PriceSheet'!$A$2:$A$47181,0)*3,FALSE)
Sample Data:
Sheet 1:
Org ID | Product | Cust Type | Qty sold | Price per Unit |
88 | XMS600 | Distributor | 3 | |
88 | XSROTH | Standard | 0 | |
88 | NMHS22 | Private | 1 | |
88 | NUCOTH | Standard | 0 | |
88 | NUCSKD | Private | 15 |
Sheet 2
Org ID | Product | Cust Type | Price per Unit |
88 | XMS600 | Distributor | 4,716.63 |
88 | XSROTH | Standard | 5,825.81 |
88 | NMHS22 | Private | 6,279.84 |
88 | NUCOTH | Standard | 540.92 |
88 | NUCSKD | Private | 4,384.79 |
Any help would be greatly appreciated.
thank you.