Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
I am trying to create a calculated Column that provides me with the daily end balance for that day as shown below but struggling with the dax that would do something like this any ideas are much appreciated, thanks.
| Date | Transaction | Balance After each transaction | Index |
| 1st Aug | -50 | 500 | 1 |
| 1st Aug | -20 | 480 | 2 |
| 1st Aug | -60 | 420 | 3 |
| 3rd Aug | -60 | 360 | 4 |
| 6rd Aug | -100 | 260 | 5 |
| Date | Transaction | Balance After each transaction | Index | Daily Balance |
| 1st Aug | -50 | 500 | 1 | |
| 1st Aug | -20 | 480 | 2 | |
| 1st Aug | -60 | 420 | 3 | 420 |
| 3rd Aug | -60 | 360 | 4 | 360 |
| 6rd Aug | -100 | 260 | 5 | 260 |
Solved! Go to Solution.
@Jnickson49 Try:
Daily Balance Column =
VAR __Date = [Date]
VAR __Index = [Index]
VAR __MaxIndex = MAXX(FILTER('Table',[Date] = __Date),[Index])
RETURN
IF(__Index = __MaxIndex, [Balance After each transaction],BLANK())
@Jnickson49 Try:
Daily Balance Column =
VAR __Date = [Date]
VAR __Index = [Index]
VAR __MaxIndex = MAXX(FILTER('Table',[Date] = __Date),[Index])
RETURN
IF(__Index = __MaxIndex, [Balance After each transaction],BLANK())
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 41 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 150 | |
| 106 | |
| 64 | |
| 37 | |
| 36 |