Reputation: 860
I have data that looks like this:
sku | price | level |
---|---|---|
ab1 | 1.01 | 1 |
ab2 | 2.06 | 1 |
ab2 | 1.45 | 25 |
ab3 | 2.00 | 1 |
ab3 | 1.40 | 10 |
ab3 | 0.89 | 25 |
ac2 | 0.74 | 1 |
ac2 | 0.50 | 100 |
As you can see, I have products that have quantity discounts in one sheet. I need to get these levels and prices out of this sheet and into another sheet.
I need to get all prices and levels for all skus, not just the first match. So if my lookup is for sku AB3 I would expect to find 2.00 / 1, 1.40 / 10 and 0.89 / 25
I have not got an extensive Google Sheets knowledge so I am afraid I have hit a brick wall in what to search for.
What do I need to do in order to get this data from sheet a into sheet b.
I have not yet decided how this data is going to look in sheet b, so I don't know if I want the price and level to go into the same cell like "1.01 per 25" or in separate cells.
Upvotes: 0
Views: 96
Reputation: 36965
You can use FILTER()
function.
=FILTER(B2:C,A2:A=F1)
Or QUERY()
function like-
=QUERY(A2:C,"select B, C where A='" & F1 & "'")
Upvotes: 2