Forum Discussion

mvgust's avatar
mvgust
Icon for Helper III rankHelper III
5 years ago
Solved

Running Total based on Funding Year

I've got a data source with a funding ID and I need to create a column with the running total.  See below for an example.

How would I create the running total column?

FundingIDFunding YearAmountRunning Total
4555201910001000
4555202020003000
4555202130006000
  • Hi mvgust 

    if you need to classify by id then sum total, try this

     CALCULATE(SUM('Table'[Amount]),FILTER(ALLEXCEPT('Table','Table'[FundingID]),'Table'[Funding Year]<=MIN('Table'[Funding Year])))

     result

     

     

    Best Regards,

    Community Support Team _Tang

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

3 Replies

  • ChrisMendoza's avatar
    ChrisMendoza
    Icon for Resident Rockstar rankResident Rockstar

    Is this what you mean?

    Measure :=
    VAR _year =
        MAX ( TableName[Funding Year] )
    RETURN
        CALCULATE ( SUM ( TableName[Amount] ), TableName[Funding Year] <= _year )
    
  • v-xiaotang's avatar
    v-xiaotang
    Icon for Community Support rankCommunity Support

    Hi mvgust 

    if you need to classify by id then sum total, try this

     CALCULATE(SUM('Table'[Amount]),FILTER(ALLEXCEPT('Table','Table'[FundingID]),'Table'[Funding Year]<=MIN('Table'[Funding Year])))

     result

     

     

    Best Regards,

    Community Support Team _Tang

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

  • v-xiaotang's avatar
    v-xiaotang
    Icon for Community Support rankCommunity Support

    Hi mvgust 

    Have you solved this problem? If yes, could you kindly accept the answer helpful as the solution (or kindly share your solution ). so the others can find it more quickly.
    really appreciate!
    Any question, please let me know. Looking forward to receiving your reply.

     

     

    Best Regards,

    Community Support Team _Tang