Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
i have one question about running sum like below example
actually i am trying to build Balance sheet so the mechanism for BS is last year sum of value should add to next year transaction
Solved! Go to Solution.
Hi @mohsinmasood - Create a running sum (cumulative total) for a Balance Sheet , hope you already have the seperate date tables , if not please create a new date table.
Create a new measure for Accumulated Profit/Losses Running Sum:
Accumulated Profit/Losses Running Sum =
CALCULATE(
SUM(BalanceSheet[Accumulated Profit/Losses]),
FILTER(
ALLSELECTED(DateTable),
DateTable[Year] <= MAX(DateTable[Year])
)
)
similarly create for Netincome running and totals as below:
Total Running Sum =
CALCULATE(
SUM(BalanceSheet[Total]),
FILTER(
ALLSELECTED(DateTable),
DateTable[Year] <= MAX(DateTable[Year])
)
)
Once created , you can achieve a running sum for Balance Sheet data
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Can you help me for equit as well as per my above requirements?
Hi @mohsinmasood - Create a running sum (cumulative total) for a Balance Sheet , hope you already have the seperate date tables , if not please create a new date table.
Create a new measure for Accumulated Profit/Losses Running Sum:
Accumulated Profit/Losses Running Sum =
CALCULATE(
SUM(BalanceSheet[Accumulated Profit/Losses]),
FILTER(
ALLSELECTED(DateTable),
DateTable[Year] <= MAX(DateTable[Year])
)
)
similarly create for Netincome running and totals as below:
Total Running Sum =
CALCULATE(
SUM(BalanceSheet[Total]),
FILTER(
ALLSELECTED(DateTable),
DateTable[Year] <= MAX(DateTable[Year])
)
)
Once created , you can achieve a running sum for Balance Sheet data
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Yes its working for accounts receivables but for equity we have to try different calculations because the basis is different
hope you can help me for this as well
Hi @mohsinmasood - Glad it works as per share, correct for account receivables we have to use another calculation. hope you can try .
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
67 | |
61 | |
52 | |
36 | |
35 |
User | Count |
---|---|
84 | |
74 | |
56 | |
45 | |
44 |