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

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

Reply
PC2022
Helper III
Helper III

The syntax error

PC2022_0-1731009545727.png

Please tell me what i am doing wrong. Thank you.

 

SchKPI =
VAR DaysUntil = DATEDIFF(today(), msdyn_projecttask[Finish], DAY)

VAR ScheduleStatus = SWITCH(TRUE(),
(msdyn_projecttask[% Complete]<100 && DaysUntil < 0) || msdyn_projecttask[Finish] > msdyn_projecttask[Baseline Finish], "Off Schedule",
msdyn_projecttask[% Complete]<100 && DaysUntil < 45, "On Watch",
msdyn_projecttask[Finish] <= msdyn_projecttask[Baseline Finish], "On Schedule",
"Error")
1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

You are missing the RETURN statement.

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

You are missing the RETURN statement.

Thank you!

Helpful resources

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