Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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] )
)
)
Proud to be a Super User!
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] )
)
)
Proud to be a Super User!
User | Count |
---|---|
123 | |
70 | |
67 | |
58 | |
53 |
User | Count |
---|---|
183 | |
92 | |
67 | |
62 | |
52 |