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
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
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.