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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Please I would like to develop a conditional column with the following rule: If Today Vs Due Day is equal or greater than 0, the result should be "On Time", but if Today Vs Due Day is less than 0 and the Code is #Q the result should be "Observed", and if Today Vs Due Day is less than 0 and the Code is blank or other value, the result should be "Delayed". Any help. Thank you.
Solved! Go to Solution.
Column = switch ( TRUE(), T[TVDD] >= 0, "On Time", T[TVDD] < 0 && T[Code] = "#Q", "Observed", "Delayed" )
Best
D.
Column = switch ( TRUE(), T[TVDD] >= 0, "On Time", T[TVDD] < 0 && T[Code] = "#Q", "Observed", "Delayed" )
Best
D.