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.
Hi Everyone,
Please anyone help me in dax if condition
1. IF ( Plannedenddate > Actualenddate then "Delayed" )
Thank You
Solved! Go to Solution.
@Nihonadmin Please try this...
if(Plannedenddate > Actualenddate,"Delayed")
Proud to be a PBI Community Champion
Hi, thanks for the answer.
Actually, here is the condition which I want to apply, but could not achieve the result. I want to see the average for the date (today's date-7).
IF ( Actualenddate>Plannedenddate,"Delayed")
@Nihonadmin Please try this...
if(Plannedenddate > Actualenddate,"Delayed")
Proud to be a PBI Community Champion