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
JEM_Systems
Helper I
Helper I

function SAMEPERIODLASTYEAR() not working

Hi, I'm trying to apply a sameperiolastyear function but is not working, this is my DAX: 


Invoices Same Period Last Year =
 
 CALCULATE(
    SUM('Monthly Sales Evolution Invoices'[Sum of Amount]),
    SAMEPERIODLASTYEAR('Monthly Sales Evolution Invoices'[Date])
 )


is there something wrong?
1 ACCEPTED SOLUTION

Hi @JEM_Systems ,

 

I suggest you to create a calendar table with continuous date by CALENDAR()/CALENDARAUTO() function.

Calendar = ADDCOLUMNS(CALENDARAUTO(),"Year",YEAR([Date]))

Measure:

LY Sales = CALCULATE(SUM('Table'[Sales]),SAMEPERIODLASTYEAR('Calendar'[Date]))

Result is as below.

vrzhoumsft_0-1683018994475.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

View solution in original post

3 REPLIES 3
RMDNA
Solution Sage
Solution Sage

Hi @JEM_Systems - we would need a lot more info than that. How specifically is it not working? What kind of error does it return? Providing screenshots would help

JEM_Systems_0-1682633520894.pngJEM_Systems_1-1682633532518.png

Is not showing any data, could you @RMDNA help me?

Hi @JEM_Systems ,

 

I suggest you to create a calendar table with continuous date by CALENDAR()/CALENDARAUTO() function.

Calendar = ADDCOLUMNS(CALENDARAUTO(),"Year",YEAR([Date]))

Measure:

LY Sales = CALCULATE(SUM('Table'[Sales]),SAMEPERIODLASTYEAR('Calendar'[Date]))

Result is as below.

vrzhoumsft_0-1683018994475.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

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.