View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Lars-Åke Aspelin[_2_] Lars-Åke Aspelin[_2_] is offline
external usenet poster
 
Posts: 913
Default lookup part number and category and provide intersection price

On Mon, 17 Aug 2009 08:30:02 -0700, Nelson
wrote:

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

--
Nelson



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