I have a problem with excel! I need to check a list of values and if my value is exist between start and end in my list , get a price of which one is match in list
My product list this :
Id | Data | Product_Name | Price |
---|---|---|---|
1 | 9905 | Mouse | $200 |
2 | 9915 | Power | $300 |
1 | 9925 | Case | $400 |
My Price list is :
Id | Start | End | Price |
---|---|---|---|
1 | 9900 | 9910 | $200 |
2 | 9911 | 9920 | $300 |
3 | 9921 | 9930 | $400 |
Check Data in Product list is between Start and End in Price list and if Data is between Start and End so get me a value of Price
thhank!