lookup part number and category and provide intersection price

N

Nelson

Good day, I have a pricing sheet that has part numbers (A2: A100), pricing
levels (B1: M1) and the pricing inbetween.

What would the formula be that says if if part number equals X and price
level is Y give me the intersecting price.

Thanks in advance
 
J

Jacob Skaria

=INDEX(A1:M100,MATCH(<partnumber>,A1:A100,0),MATCH("y",A1:M1,0))

<partnumber> is part number. Within double quotes if text
y is level..

If this post helps click Yes
 
L

Lars-Åke Aspelin

Good day, I have a pricing sheet that has part numbers (A2: A100), pricing
levels (B1: M1) and the pricing inbetween.

What would the formula be that says if if part number equals X and price
level is Y give me the intersecting price.

Thanks in advance


Try this formula:

=INDEX(B2:M99,MATCH(X,A2:A99,0),MATCH(Y,B1:M1,0))

Replace X and Y with your values or references to cells where you X
and Y values are.

Hope this helps / Lars-Åke
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top