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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Might anyone have any suggestions as to what i am doing wrong?
Thanks
Solved! Go to Solution.
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
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!