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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
procyon82
Resolver I
Resolver I

SAMEPERIODLASTYEAR()

I use

 

Revenue Last Year = CALCULATE(SUM('GA Ecommerce'[Revenue]),SAMEPERIODLASTYEAR('GA Ecommerce'[Date])) to create a column to have my last year's revenue in reference to what is displayed on my graph. That works beautifully!

 

I also added

 

Users Last Year = CALCULATE(SUM('GA Traffic'[Pageviews]),SAMEPERIODLASTYEAR('GA Traffic'[Date]))

 

and it doesn't work. It doesn't give an error, but simply stays blank.

 

Users Last Year = CALCULATE(SUM('GA Traffic'[Pageviews])

 

and

 

SAMEPERIODLASTYEAR('GA Traffic'[Date]))

 

each work separately though. Does anybody know what's wrong?

1 ACCEPTED SOLUTION

This worked:

 

Users Last Year = CALCULATE(SUM('GA Traffic'[Users]),SAMEPERIODLASTYEAR('GA Traffic'[Date]), AllExcept('GA Traffic', 'GA Traffic'[Date]))

View solution in original post

11 REPLIES 11
Anonymous
Not applicable

This worked for me:

 

nest two functions: date add and previous month.

I have a table created / have the property configured as a date table.

 

Importe MismoMes AñoAnt =
CALCULATE(
SUM('MR GOPMX_ViewA'[Importe MN]), DATEADD(PREVIOUSMONTH(DateDim[FullDateAlternateKey]),-11,MONTH))

Anonymous
Not applicable

This worked for me:

 

nest two funtion: add date and previous month

 

Importe MismoMes AñoAnt =
CALCULATE(
SUM('MR GOPMX_ViewA'[Importe MN]), DATEADD(PREVIOUSMONTH(DateDim[FullDateAlternateKey]),-11,MONTH))

Anonymous
Not applicable

hi all, I test this solution and worked for me:

 

workarround:

nest two functions: add date and previous month

 

Importe MismoMes AñoAnt =
CALCULATE(
SUM('MR GOPMX_ViewA'[Importe MN]), DATEADD(PREVIOUSMONTH(DateDim[FullDateAlternateKey]),-11,MONTH))

pdamac
New Member

Dear friends, unfortunately this function has no solution if there is an error. It is the worst function of Power BI, because it is necessary but only works in an unknown condition and does not work in others. It's a pity that this happens in an excellent solution like Power BI. There will be no solution. If it works, use it if you do not use any other function. That's the truth.

Anonymous
Not applicable

Have you a table date? or have you, at least, one record for any possible date in the two years? If not, the Intelligence functions can't work as expected.  

 

 

nikil
Resolver I
Resolver I

Formula looks right, are you sure there is data for multiple years ?

Yes, there definitely is data for last year. If I only use:

 

SAMEPERIODLASTYEAR('GA Traffic'[Date]), it shows me the date for last year. I'm clueless.

Anonymous
Not applicable

Have you a filter on the two dates? Each measure uses a different column date.

No, I am not using filters

Anonymous
Not applicable

SAMEPERIODLASTYEAR, Returns a table that contains a column of dates shifted one year back in time from the dates in the specified dates column, in the current context.

https://support.office.com/en-us/article/SAMEPERIODLASTYEAR-Function-DAX-b8f7f423-22f5-470f-abd3-b76...

 

See the lasts words from the description. What is your filter context?

 

This worked:

 

Users Last Year = CALCULATE(SUM('GA Traffic'[Users]),SAMEPERIODLASTYEAR('GA Traffic'[Date]), AllExcept('GA Traffic', 'GA Traffic'[Date]))

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors