Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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?
FundingID | Funding Year | Amount | Running Total |
4555 | 2019 | 1000 | 1000 |
4555 | 2020 | 2000 | 3000 |
4555 | 2021 | 3000 | 6000 |
Solved! Go to Solution.
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.
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
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.
Is this what you mean?
Measure :=
VAR _year =
MAX ( TableName[Funding Year] )
RETURN
CALCULATE ( SUM ( TableName[Amount] ), TableName[Funding Year] <= _year )
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
89 | |
80 | |
59 | |
47 | |
40 |
User | Count |
---|---|
118 | |
81 | |
81 | |
58 | |
39 |