Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 73 | |
| 70 | |
| 39 | |
| 34 | |
| 23 |