Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi, Do you know how to calculate beginning balance in power bi?
Solved! Go to Solution.
Hi @Anonymous,
It depends on your data model. If I were to calculate the balance sheet value, I'd use a measure similar to below:
Balance Sheet Value =
CALCULATE (
SUM ( Fact[Value] ),
FILTER (
ALL ( DatesTable ),
DatesTable[DateColumn] <= MAX ( DatesTable[DateColumn] )
)
)And for the beginning balance, that would be:
Balance Sheet Value =
CALCULATE (
SUM ( Fact[Value] ),
FILTER (
ALL ( DatesTable ),
DatesTable[DateColumn] < MIN ( DatesTable[DateColumn] )
)
)
Hi @Anonymous,
It depends on your data model. If I were to calculate the balance sheet value, I'd use a measure similar to below:
Balance Sheet Value =
CALCULATE (
SUM ( Fact[Value] ),
FILTER (
ALL ( DatesTable ),
DatesTable[DateColumn] <= MAX ( DatesTable[DateColumn] )
)
)And for the beginning balance, that would be:
Balance Sheet Value =
CALCULATE (
SUM ( Fact[Value] ),
FILTER (
ALL ( DatesTable ),
DatesTable[DateColumn] < MIN ( DatesTable[DateColumn] )
)
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |