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
Sadr_Hoda
Frequent Visitor

Last year sum

Hi,

 

I am unable to calculate last year cumulative sum for Dynamic table like with MTD and YTD.

 

below formula I use for current year and working perfectly.

 

Current Period MTD/YTD =
SWITCH([SelectedPeriod],
1, [Total current year consol.],
2, CALCULATE([Total current year consol.], DATESYTD('Calendar'[Date])))
 
Thanks in advance
3 REPLIES 3
v-jingzhang
Community Support
Community Support

Hi @Sadr_Hoda 

 

Please try this measure

LY Period MTD/YTD =
SWITCH (
    [SelectedPeriod],
    1, CALCULATE ( [Total Sales], DATEADD ( 'Calendar'[Date], -1, YEAR ) ),
    2, CALCULATE ( [Total Sales], DATESYTD ( DATEADD ( 'Calendar'[Date], -1, YEAR ) ) )
)

 

In above example, Total Sales is a simple measure with SUM: Total Sales = SUM('Table'[Sales])

 
 
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Thanks for your advise, however, it is not working.

 

I am unable to compute cumulative prior period balance. 

 

I have a data from 2016 onwards and want to compare month to month and period to period wise.

 

Hi @Sadr_Hoda 

 

I may misunderstand your requirement. Can you please provide some dummy data or give some examples to explain what you want? Is this blog close to what you want? Creating a Power BI Chart Comparing Each Year vs Previous Year - Carl de Souza I guess your period could be month or year or something else and is dynamic?

 

Best Regards,

Jing

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
Top Kudoed Authors