- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
cumulative calculation DAX
I made a DAX formula for camulative calculations.
See dax formula
It shows all incoming and outgoing transactions. In the other column the transactions calculates calmulatively due to the DAX formula I made. I made a table with date, incoming and outgoing transactions, transaction_ID and camulative calculation. The problem is when you jump from April 1 to April 2, the camulative calculation starts over again. Does somebody know the solution to this problem?
See example.
Date | Transaction_id | Transactions | Camulative_calculation |
01-april | 1 | 50 | 50 |
01-april | 2 | -80 | -30 |
01-april | 3 | 210 | 180 |
02-april | 4 | 80 | 80 |
02-april | 5 | 50 | 130 |
02-april | 6 | 100 | 230 |
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Anonymous
Please try
Cumulatieve Berekening =
CALCULATE (
SUM ( 'Grootboekmutaties huidig jaar'[Saldo] ),
FILTER (
ALLSELECTED ( 'Grootboekmutaties huidig jaar'[Omschrijving] ),
'Grootboekmutaties huidig jaar'[Omschrijving]
<= MAX ( 'Grootboekmutaties huidig jaar'[Omschrijving] )
),
ALL ( 'Table'[Date] )
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Anonymous
Date is from which table? What happens if you remove it from the visual?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When i remove the Date column from the visual it works, but i need to include the date column.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Anonymous
Please try
Cumulatieve Berekening =
CALCULATE (
SUM ( 'Grootboekmutaties huidig jaar'[Saldo] ),
FILTER (
ALLSELECTED ( 'Grootboekmutaties huidig jaar'[Omschrijving] ),
'Grootboekmutaties huidig jaar'[Omschrijving]
<= MAX ( 'Grootboekmutaties huidig jaar'[Omschrijving] )
),
ALL ( 'Table'[Date] )
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, this one works

Helpful resources
Power BI Monthly Update - July 2025
Check out the July 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
06-09-2025 10:25 AM | |||
06-25-2025 11:09 AM | |||
07-09-2025 12:20 AM | |||
12-13-2024 03:17 PM | |||
06-14-2025 11:13 AM |
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |