Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
krkumar2
Frequent Visitor

Compare with previous month within quarter

I  have cummulative aggregate within the quarter

 

krkumar2_0-1663788041712.png

 

I want to calculate Revnue for specific month

 

krkumar2_1-1663788167158.png

 

 

 

 

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @krkumar2 ,

I created some data:

vyangliumsft_0-1663826902765.png

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:

vyangliumsft_1-1663826902768.png

 

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

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @krkumar2 ,

I created some data:

vyangliumsft_0-1663826902765.png

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:

vyangliumsft_1-1663826902768.png

 

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_1-1664905539338.png

 

 

Greg_Deckler
Super User
Super User

@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]  

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors