Get Latest Price for Specific Product

Get Latest Price for Product in Excel

In a previous article, we combined the MAX and IF functions, to find the highest price for a specific product. Today we’ll use that technique to find the latest date that a product’s price was changed. Then, using the product name and that date, we can find the latest price for specific product – even if it isn’t the highest price.

minmax08

Product Pricing Table

In this example, there is a price list in cells A1:C9. There are three columns: Product, Date and Price.

maxiflatestprice01

Find the Latest Date

If we want to find the latest price for Pens, the first step is to figure out the last date that its price was changed. To do that, we’ll use the MAX and IF functions. This is an array function, so you’ll press Ctrl+Shift+Enter, instead of just pressing Enter, after typing the formula.

    • Enter the product name — Pens — in cell A12.
    • To calculate the latest date in cell B12, enter this formula, and press Ctrl + Shift + Enter:

=MAX(IF($A$2:$A$9=A12,$B$2:$B$9))

maxiflatestprice02

The formula looks for the selected product name in column A — $A$2:$A$9=A12

Then, it finds the highest date for that product in column B — $B$2:$B$9

Calculate the Latest Price

Next, we’ll use a SUMIFS formula to find the latest price for Pens. This formula can be used in Excel 2007, or later versions. If you’re using Excel 2003, you can use SUMPRODUCT – see that example in the next section.

NOTE: This solution assumes that a product’s price is never changed twice on the same date.

Here is the SUMIFS formula, in cell C12:

=SUMIFS($C$2:$C$9,$A$2:$A$9,A12,$B$2:$B$9,B12)

maxiflatestprice03

Excel 2003 Formula

The SUMIFS function isn’t available in Excel 2003, so if you’re using that version, you can use the SUMPRODUCT function instead:

=SUMPRODUCT(($A$2:$A$9=A12)*($B$2:$B$9=B12)*($C$2:$C$9))

maxiflatestprice04

Download the Sample File

You can download the sample file from the MIN and MAX Functions page on my website.

__________________________

Get Latest Price for Product in Excel

17 thoughts on “Get Latest Price for Specific Product”

  1. Like always great work and I used this on my latest spreadsheet.
    What if I want to look up latest price between dates?
    Example:
    from date = a1
    to date = a2
    How do I change this formula to include search between these dates?
    =IF(G10=0,’PRICE COMPARISSON’!M10,SUMIFS(Table38[[Price]:[Price]],Table38[[Item]:[Item]],Table364894[[RATION ITEM]:[RATION ITEM]],Table38[[Date]:[Date]],G10))

    Know it would be a breeze for you
    Thank you in Advance

      1. Thank you for quick response
        Once again the answer lies here somewhere in contextures

        Thank you Debra!

  2. Believe it or not
    The answer lies right here but I don’t know how to add it with the structured reference in my formula.

    =IF(G10=0,’PRICE COMPARISSON’!M10,SUMIFS(Table38[[Price]:[Price]],Table38[[Item]:[Item]],Table364894[[RATION ITEM]:[RATION ITEM]],Table38[[Date]:[Date]],G10))

    I Know that this needs to go in formula above
    “>=” & $D$2, is the range with the value for criteria 1 (the Start date), and the operator to use with that value (greater than or equal to)

    “<=" & $E$2, is the range with the value for criteria 2 (the End date), and the operator to use with that value (less than or equal to)

    1. Try this, Francois:
      =IF(G10=0,’PRICE COMPARISSON’!M10,SUMIFS(Table38[[Price]:[Price]],Table38[[Item]:[Item]],Table364894[[RATION ITEM]:[RATION ITEM]],Table38[[Date]:[Date]],”>=” & $D$2,Table38[[Date]:[Date]],”<=" & $E$2))

      1. As always this lady is a genius
        Worked for me on that specific formula.

        When I tried it on another almost the same formula with array, it says to many arguments.
        =IFERROR(MAX(IF(Table3[[Item]:[Item]]=$D11,IF(Table3[[Supplier]:[Supplier]]=G$7,Table3[[Date]:[Date]],”>=” & [03_Monthly_Shopping_Master.xlsm]SL1!$L$4,Table3[[Date]:[Date]],”<=" & [03_Monthly_Shopping_Master.xlsm]SL1!$S$4))),"")

        Where did I brake it this time?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.