Reputation: 13
Here is a quick sheet i made to try and demonstrate what im trying to achieve. I looked an couldnt quite find an answer that fit what im trying to do.
I would like to type in the criteria in to the teal boxes and for it to return the proper price based on the level. So in this instance it should return 3.9
https://docs.google.com/spreadsheets/d/1ZAAeoBzgePwW_Ypp5L0Td7JUeRjHfV4J--UFZ1gxV0c/edit?usp=sharing
Upvotes: 1
Views: 50
Reputation: 152465
Use SUMIFS() with INDEX/MATCH to return the correct column:
=SUMIFS(INDEX(F8:J10,,G4),A8:A10,B4,B8:B10,C4,C8:C10,D4,D8:D10,E4,E8:E10,F4)
Upvotes: 1