Forum Discussion

DanielDelgado's avatar
DanielDelgado
New Member
7 years ago
Solved

Previous Cummulative price

Hi!

 

I am trying to calculate the previous cummulative price for each day. Is there a way that I can find it?

 

This is how my data looks like:

Each product has a code and a Price for each day

The last column has this formula:

 

PO Min Acumulado = IF(ISBLANK([AAAACC]);BLANK();CALCULATE(MIN([PO]);FILTER(ALLEXCEPT(AuxTable;AuxTable[Item Homologado];AuxTable[AAAA]);AuxTable[Date] <= MAX(AuxTable[Date]))))

 

What I want to calculate is, for each day & product, the previous cummulative minimun price. For example, in 07/01/2017 the price is 34.9, but the previous cummulative price was 35.9. So, in the same row of the 34.9 price I want to show the 35.9, which is the previous cummulative minimun price.

 

Thanks in advance!!

 

Daniel

  • Hi DanielDelgado,

    Based on my test, you could refer to below formulas:

    Create an index column firstly:

    Index = RANKX('Table1',FIRSTNONBLANK('Table1'[Date],'Table1'[Date]),,ASC,Dense)

    Create the po min Acumulado column:

    po min Acumulado = var a=Table1[Index]
             var b=CALCULATE(MAX(Table1[PO]),FILTER('Table1','Table1'[Index]<=a))
             return b

    Result:

     

     You could also download the pbix file to have a view.

     

    Regards,

    Daniel He

3 Replies

  • Hi,

     

    Try this calculated column formula

     

    =IF(ISBLANK([AAAACC]);BLANK();LOOKUPVALUE(MIN([PO]),[Date],CALCULATE(MIN([Date]);FILTER(AuxTable;AuxTable[Item Homologado]=EARLIER(AuxTable[Item Homologado])&&AuxTable[Date]<EARLIER(AuxTable[Date]))),[Item Homologado],[Item Homologado]))

     

    Hope this helps.

     

     

  • v-danhe-msft's avatar
    v-danhe-msft
    Microsoft Employee

    Hi DanielDelgado,

    Based on my test, you could refer to below formulas:

    Create an index column firstly:

    Index = RANKX('Table1',FIRSTNONBLANK('Table1'[Date],'Table1'[Date]),,ASC,Dense)

    Create the po min Acumulado column:

    po min Acumulado = var a=Table1[Index]
             var b=CALCULATE(MAX(Table1[PO]),FILTER('Table1','Table1'[Index]<=a))
             return b

    Result:

     

     You could also download the pbix file to have a view.

     

    Regards,

    Daniel He

  • v-danhe-msft's avatar
    v-danhe-msft
    Microsoft Employee

    Hi DanielDelgado,

    Could you please tell me if your problem has been solved? If it is, could you please mark the helpful replies as Answered?

     

    Regards,

    Daniel He