Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I'm new at PowerBI and DAX and struggling generating a cumulative total on the following table:
| Territory 1 | 1 | 100 |
| Territory 1 | 2 | 50 |
| Territory 1 | 3 | 50 |
| Territory 1 | 4 | 40 |
| Territory2 | 1 | 100 |
| Territory2 | 2 | 50 |
| Territory2 | 3 | 50 |
| Territory2 | 4 | 40 |
Table header are : Territory / Quarter / Sales
The cumulative should run per quater for each territory.
Can someone help ?
Thanks
Solved! Go to Solution.
Hi @EckbertO,
You can create a measure below,
Measure = CALCULATE(SUM(Table1[Sales]),FILTER(ALL(Table1),'Table1'[Quarter]<=MAX(Table1[Quarter]) && 'Table1'[Territory]=MAX(Table1[Territory])))
Also you can create a calculated column,
runningtotal = CALCULATE(SUM(Table1[Sales]),FILTER(ALL(Table1),'Table1'[Quarter]<=EARLIER(Table1[Quarter]) && 'Table1'[Territory]=EARLIER(Table1[Territory])))
Best Regards,
Qiuyun Yu
Hi @EckbertO,
You can create a measure below,
Measure = CALCULATE(SUM(Table1[Sales]),FILTER(ALL(Table1),'Table1'[Quarter]<=MAX(Table1[Quarter]) && 'Table1'[Territory]=MAX(Table1[Territory])))
Also you can create a calculated column,
runningtotal = CALCULATE(SUM(Table1[Sales]),FILTER(ALL(Table1),'Table1'[Quarter]<=EARLIER(Table1[Quarter]) && 'Table1'[Territory]=EARLIER(Table1[Territory])))
Best Regards,
Qiuyun Yu
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |