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 August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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