Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have cummulative aggregate within the quarter
I want to calculate Revnue for specific month
Solved! Go to Solution.
Hi @krkumar2 ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
cummuluative =
SUMX(FILTER(ALL('Table'),YEAR('Table'[Date])=YEAR(EARLIER('Table'[Date]))&&MONTH('Table'[Date])=MONTH(EARLIER('Table'[Date]))),[Amount])
Revenue =
SUMX(FILTER(ALL('Table'),'Table'[Year-Qtr]=EARLIER('Table'[Year-Qtr])&&'Table'[Month]=EARLIER('Table'[Month])),[Amount])
-
SUMX(FILTER(ALL('Table'),'Table'[Year-Qtr]=EARLIER('Table'[Year-Qtr])&&'Table'[Month]=EARLIER('Table'[Month])-1),[Amount])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @krkumar2 ,
I created some data:
Here are the steps you can follow:
1. Create calculated column.
cummuluative =
SUMX(FILTER(ALL('Table'),YEAR('Table'[Date])=YEAR(EARLIER('Table'[Date]))&&MONTH('Table'[Date])=MONTH(EARLIER('Table'[Date]))),[Amount])
Revenue =
SUMX(FILTER(ALL('Table'),'Table'[Year-Qtr]=EARLIER('Table'[Year-Qtr])&&'Table'[Month]=EARLIER('Table'[Month])),[Amount])
-
SUMX(FILTER(ALL('Table'),'Table'[Year-Qtr]=EARLIER('Table'[Year-Qtr])&&'Table'[Month]=EARLIER('Table'[Month])-1),[Amount])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thanks Liu , but it is giving me error
@krkumar2 Maybe:
Calculation Column =
VAR __YearQtr = [Year-Qtr]
VAR __Month = [Month]
VAR __Previous = MAXX(FILTER('Table',[Year-Qtr] = __YearQtr && [Month] = __Month - 1),[Monthly]) + 0
RETURN
__Previous + [Monthly]
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
30 | |
18 | |
15 | |
7 | |
6 |