Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi all.
I am relatively new to Power BI and am struggling a little with a problem that I would usually create a SQL case statement to label the data accordingly; essentially creating a new column.
This is my statement:
CASE WHEN
FINISH_DATE > EST_DATE THEN 'Fail'
WHEN
FINISH_DATE IS NULL AND EST_DATE < GETDATE() THEN 'On-Going'
ELSE
'Pass'
END AS SLA_Status
Any idea how I can get this in Power BI and the Fail / On-Going / Pass information into a new column?
Thanks in advance.
Solved! Go to Solution.
I believe something along the lines of:
Column =
IF([FINISH_DATE] > [EST_DATE],
"Fail",
IF(ISBLANK([FINISH_DATE]) && EST_DATE < NOW(),
"On-Going",
"Pass"
)
)
I believe something along the lines of:
Column =
IF([FINISH_DATE] > [EST_DATE],
"Fail",
IF(ISBLANK([FINISH_DATE]) && EST_DATE < NOW(),
"On-Going",
"Pass"
)
)
Perfect! Thank you!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 26 | |
| 23 | |
| 19 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 46 | |
| 46 | |
| 43 | |
| 36 | |
| 31 |