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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

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

11 REPLIES 11
kalpesh07
Frequent Visitor

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

I am trying to calcualte the same period 2 years ago, but it is not working for me.
Can you share your example that is working.

Thanks,

pthapa

Hi pthapa,

 

What worked for me was using DATEADD. The measure looks like:

 

measureName =calculate(measure, DATEADD(datetable[date], -2*364, DAY)) This way work if you want to compare the "same weekday", since it could be not in the same month but that is what I was after.

Regards

Jose

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
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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