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 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())
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 |
---|---|
55 | |
54 | |
54 | |
37 | |
29 |
User | Count |
---|---|
77 | |
62 | |
45 | |
40 | |
40 |