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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
GFRO
Frequent Visitor

Native Database Query Error

I'm having this Expression.Error: This native database query isn't currently supported.

I declared some variables to update some dates in the Main Query.

Does anyone have an idea what's wrong here? It works fine when I run it in SQL Server.

 

 

DECLARE @Start_Date DATE, @End_Date DATE, @Update_Date DATE, @Pay_Date DATE, @NextStart_Date DATE;

SELECT
@Start_Date =   dateadd(day, -1 * DATEPART(dy,SYSDATETIME()) % 14 , SYSDATETIME())
SET @End_Date = dateadd(DAY , 13,@Start_Date)
SET @Pay_Date = dateadd(DAY , 19,@Start_Date)
SET @Update_Date = dateadd(day,-7, @End_Date )
SET @NextStart_Date = dateadd(day,14, @Start_Date)


IF @Update_Date >= convert(date, SYSDATETIME() ) AND @NextStart_Date <= convert(date, SYSDATETIME()) 
BEGIN
<Main Query here>
END

 

 

 

1 REPLY 1
Anonymous
Not applicable

Hi, @GFRO 

 

Is the problem occurring in Power BI Desktop or Power BI Service?

Please check if  this thread helps:

Solved: Native Database Query Error - Microsoft Fabric Community

 

Best Regards,

Community Support Team _Charlotte

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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 Kudoed Authors