Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
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 |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |