lookup part number and category and provide intersection price

  • Thread starter Thread starter Nelson
  • Start date Start date
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
 
=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
 
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
 
Back
Top