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
wes-shen-poal
Helper III
Helper III

How to calculate measure for same period 2 years ago

Hi there,

 

I use SAMEPERIODLASTYEAR() to calculate measure for same period 1 year ago.

 

How do I do it for same period 2 years ago?


Thanks,

Wes

1 ACCEPTED SOLUTION
vanessafvg
Super User
Super User

@wes-shen-poal measurename = calculate(measure, parallelperiod(datetable[date], -2, year))

 

 





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




View solution in original post

9 REPLIES 9
kalpesh07
New Member

I Just found a better way to do it + It work dynamically based on user selection (not just on Only Year or Month or Days)

 

I've just nested Sameperiodlastyear

 

So for same period 2 year ago it will be like :

Syntax : SAMEPERIODLASTYEAR(SAMEPERIODLASTYEAR([Date])) 

jveroes_rhc
Frequent Visitor

(edited)
I tried the suggested PARALLELPERIOD function and it skewed dates and values. You can test by just comparing the calc field with one year only using SAMEPERIODLASTYEAR and PARALLELPERIOD.

What has worked for me was DATEADD, so, the mesuare will look like:
measureName =calculate(measure, DATEADD(datetable[date], -2*364, DAY))


This way at least you compare the "same weekday", could be not in the same month but that is what I was after. Use @Anonymous but with DATEADD() suggestion below for other usecases.

I know is 5 yrs ago the question, but worth the contribution!

Regards

Jose

This was the one that worked for me!
My month selection in my slicer is dynamic, so this let me compare historical YTD numbers (parallelperiod would only give me prior full years)

Thanks!

Anonymous
Not applicable

Good to be mindful of what period type you have in your report.

If you want to see the whole of the year for two years ago then the  prior solution is perfect

    calculate(measure, parallelperiod(datetable[date], -2, year))

 

However, if the report is a month by month one then try 

     calculate(measure, parallelperiod(datetable[date], -24, month))

Hi, I have tried your advice but I'm getting the error message below. Can you tell me what I'm missing? Thanks!

RenataOGardner_0-1620558147349.png

 

Are you missing the DATEADD function?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

@RenataOGardner 

Please try

CALCULATE ([Net Sale TY], PARALLELPERIOD('Date'[Date], - 24,MONTH))

I think You need to include the PARALLELPERIOD function name and also a comma before the -24

Please let me know how you go

vanessafvg
Super User
Super User

@wes-shen-poal measurename = calculate(measure, parallelperiod(datetable[date], -2, year))

 

 





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Thank you @vanessafvg

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.