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
Niall
Regular Visitor

Running Total using SAMEPERIODLASTYEAR

Hi

 

I have a measure as follows

UniqueInteractionId = DISTINCTCOUNT('Interactions'[Interaction: ID])

I then have two measures to calculate the monthly runnning total for this year and for last year

 

MonthlyTotalThisYr = 
CALCULATE (
    [UniqueInteractionId], 
    DATESYTD( Dates[Date] )
)
MonthlyTotalLastYr = 
CALCULATE (
    [UniqueInteractionId], 
    SAMEPERIODLASTYEAR ( Dates[Date] )
)

The current year works as expected however the prior year does not

 

Capture.PNG

Might anyone have any suggestions as to what i am doing wrong?

 

Thanks

 

 

 

1 ACCEPTED SOLUTION
lc_finance
Solution Sage
Solution Sage

Hi @Niall ,

 

 

The formula SAMEPERIODLASTYEAR takes the same month from the previous year but it does not calculate the YTD. This is why you don't see the correct numbers.

 

You can try the formula below:

 

MonthlyTotalLastYr = 
CALCULATE (
    [UniqueInteractionId], 
    DATEADD(DATESYTD(Dates[Date]),-1,Year)
)

The formula first calculates the YTD, then the function DATEADD subtracts one year from the YTD. Therefore you obtain the YTD of the previous year.

 

Let me know if this fixes your problem.

 

Regards,

 

LC

Interested in Power BI templates? Check out my blog at www.finance-bi.com

View solution in original post

3 REPLIES 3
lc_finance
Solution Sage
Solution Sage

Hi @Niall ,

 

 

The formula SAMEPERIODLASTYEAR takes the same month from the previous year but it does not calculate the YTD. This is why you don't see the correct numbers.

 

You can try the formula below:

 

MonthlyTotalLastYr = 
CALCULATE (
    [UniqueInteractionId], 
    DATEADD(DATESYTD(Dates[Date]),-1,Year)
)

The formula first calculates the YTD, then the function DATEADD subtracts one year from the YTD. Therefore you obtain the YTD of the previous year.

 

Let me know if this fixes your problem.

 

Regards,

 

LC

Interested in Power BI templates? Check out my blog at www.finance-bi.com

Thanks - works perfectly

Good to hear!

 

Best of luck for your analysis

 

LC

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.