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.
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 |
---|---|
64 | |
60 | |
51 | |
36 | |
36 |
User | Count |
---|---|
81 | |
72 | |
58 | |
45 | |
44 |