Skip to main content

I have attached a packaged workbook (2019.3).  As you see in the image below, I want the ONLY most current Avg.MSRP Price available and the Avg Price for the filtered time period by date.  Not sure how to go about this.  Thank you for any assistance.

 

Using Date Filter

6 answers
  1. Feb 24, 2020, 9:23 PM

    Or if you were trying to show the columns for one measure,and only the max for one measure, you can use this calculation.

     

    if size() = 1 then

    avg(if [Date Column] =

    {max([Date Column])} then ([MSRP Price, $]) end)

    ELSE

    AVG([Price])

    END

     

    Hope this helps! See Attached.

    Please mark this answer as correct or helpful if it helps solve your question.

     

    Robert Breen

    Or if you were trying to show the columns for one measure,and only the max for one measure, you can use this calculation.

0/9000