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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
nleuck
Post Patron
Post Patron

Calculating Same Period Last Year

Hello All,

 

I could use some help calculating Sales from last year during the current time frame (Jan 01 - Jan 12). SAMEPERIODLASTYEAR doesn't work the way I would think it should. Below are two links that I've tried and I'm still not getting the results I would expect.

 

https://radacad.com/same-period-last-year-to-date-dax-calculation-in-power-bi

https://community.powerbi.com/t5/Desktop/Function-SAMEPERIODLASTYEAR-expects-a-contiguous-selection-...

 

Thanks! 

1 ACCEPTED SOLUTION
nleuck
Post Patron
Post Patron

So I found a solution that worked for me. I had to create to create a column in my Date table that is a True/False if the current year dates are the same period as last year. I then add that column as a filter on a visual and then my Same Period LY Sales measure shows the correct amount.

 

Same Period LY Sales = CALCULATE(SUM(SalesTable[TotalSales]), SAMEPERIODLASTYEAR(DateTable[Date]))

 

IsSamePeriodLY = IF(DateTable[Date] >= DATE(YEAR(TODAY()), 1, 1), 1 &&

                                                                         IF(DateTable[Date] <= TODAY()-1, 1, 0))

View solution in original post

3 REPLIES 3
nleuck
Post Patron
Post Patron

So I found a solution that worked for me. I had to create to create a column in my Date table that is a True/False if the current year dates are the same period as last year. I then add that column as a filter on a visual and then my Same Period LY Sales measure shows the correct amount.

 

Same Period LY Sales = CALCULATE(SUM(SalesTable[TotalSales]), SAMEPERIODLASTYEAR(DateTable[Date]))

 

IsSamePeriodLY = IF(DateTable[Date] >= DATE(YEAR(TODAY()), 1, 1), 1 &&

                                                                         IF(DateTable[Date] <= TODAY()-1, 1, 0))

parry2k
Super User
Super User

@nleuck do you have a date dimensions in your model which is super important? Provide more details when you say it is not working.

 

Read this post to get your answer quickly.

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

@parry2k 

 

Yes I have my own date table.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.