Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. 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] )
)
)
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
76 | |
75 | |
70 | |
47 | |
41 |
User | Count |
---|---|
64 | |
41 | |
31 | |
30 | |
28 |