Forum Discussion

MaheshMk's avatar
MaheshMk
Frequent Visitor
7 years ago
Solved

opening balance issue

Hi folks,    I've a challenge with Opening Balance :) It works well for the first couple of rows but doesn't afterwards. Please help.    Sure, I'm missing a trick here.    Thanks,  Mahesh ...
  • Mariusz's avatar
    7 years ago

    Hi MaheshMk 

     

    You can use the below pattern.

    previousMonthRR = 
    VAR _lpd = CALCULATE(
        LASTDATE( 'Calendar'[Date] ),
        PARALLELPERIOD( 'Calendar'[Date], -1, MONTH )
    ) 
    RETURN CALCULATE( 
        SUM( Table[Added] ) - SUM( Table[Sold] ) + SUM( Table[Returned] )
        'Calendar'[Date] <= _lpd 
    )

     

    Best Regards,
    Mariusz

    If this post helps, then please consider Accepting it as the solution.

    Please feel free to connect with me.
    Mariusz Repczynski