The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |