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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

SAMEPERIODLASTYEAR (DateADD) not supported in direct query mode

Many useful timeintelligence functions like sameperiodlastyear etc are not supported in direct query mode.

How does everyone get around the issue?

I can enable the unrestricted measure option to use them, not sure the performance impacts for that. Anyone can share their experience?

3 REPLIES 3
v-qiuyu-msft
Community Support
Community Support

Hi @Anonymous,

 

As we know, to use DAX expression in Power BI desktop in DirectQuery mode, we need to allow "unrestricted measures" , otherwise, we are not able to use those DAX expressions. The option you found which is suggested by Microsoft, see: Power BI Updates This Week: New Report Authoring Capabilities.

 

In addition, depends on different data source types you used, you can also retrieve data same as the DAX expression results on query side. If you are connecting to SQL Server data source, you can use DATEADD() function like below to return results same as sameperiodlastyear() DAX expression results:

 

SELECT DATEADD(year, -1, '2006-08-30') as previousyear from table1

 

If you have any question, please feel free to ask.

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@v-qiuyu-msft dateadd is also not supported in direct query mode by default.

Hi @Anonymous,

 

What I mean is using DATEADD() function in T-sql query when you connect to SQL Server database. Smiley HappySee:

 

a1.PNG

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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