March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I am able to achieve this as long as the running total is in a column ... however I would like to see the running totals as follows and hoping someone can advise the correct calculation if there is one.
Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
Year: 2021
Value 10 10 10 10 10 10 10 10 10 10 10 10
**bleep** total 10 20 30 40 50 60 70 80 90 100 110 120
Year: 2022
Value 10 10 10 10 10 10 10 10 10 10 10 10
**bleep** total 130 140 150 160 170 etc etc
Solved! Go to Solution.
@MarcUrdang , what is your source table structure , usually running total with Date or sortable month year (YYYYMM) you can get like
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))
or
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all('Date'),'Date'[date] <=max('Date'[date])))
@MarcUrdang , what is your source table structure , usually running total with Date or sortable month year (YYYYMM) you can get like
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected('Date'),'Date'[date] <=max('Date'[date])))
or
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all('Date'),'Date'[date] <=max('Date'[date])))
Hi Amit .. that works perfectly ... just one more question ... now that the numbers are in a matrix .. I need another calc that works out the % diff ie ... not sure if i need to post another request for this ?
Jan
2021
Val 25
% dif
2022
Val 40
% diff 60
thanks SO much .. .have accepted as a solution
have a super weekend
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |