Forum Discussion

sprakash1192's avatar
sprakash1192
Icon for Helper II rankHelper II
6 years ago
Solved

Running total negative and slow

I am trying to calculate net inventory om hand on selected dates by doing running total on inventory transactions of all the stock receipts and stock issues. The net total is fine, but I start drilli...
  • v-zhenbw-msft's avatar
    v-zhenbw-msft
    6 years ago

    Hi sprakash1192 ,

     

    We need to calculate the value of the same period first, then accumulate. So we can create two measures to meet your requirement.

     

    Measrue2 = 
    CALCULATE(
    SUM('Table'[values]),
    SAMEPERIODLASTYEAR('Table'[Date]),ALLSELECTED('Table'))
    same period last year = 
    CALCULATE([Measrue2],FILTER(ALLSELECTED('Table'),'Table'[Date]<=MAX('Table'[Date])))

     

    The result like this,

     

     

    If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

    BTW, pbix as attached.

     

    Best regards,

     

    Community Support Team _ zhenbw

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.