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 nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I'm trying to flag items in our app tracker list as at risk (Yes or No) based on timeline and running into problems. FYI - I am new to Powerbi.
I have a list of items with Status column and a Start Date column. I want to flag items as At Risk if they are not "complete" or "In Progress" and are past their start date. I would also like to flag items as as at risk if they have a blank start date and are not "Complete" (In Progress or Not Started).
Below is what I have so far, problem is that "In Progress" items that have a blank start date are not being flagged as at risk.
Thanks again @grantsamborn for helping out on my last help request...this is similar but unfortunately I was not able to adjust and get it working.
Solved! Go to Solution.
Hi @AlGrant
Can you give this a try?
At Risk start date (y/n) =
IF(
( 'CMI Application Tracker'[Cloud Migration Status] = "Not Started"
&& 'CMI Application Tracker'[Migration Start Date] < TODAY() )
||
( 'CMI Application Tracker'[Cloud Migration Status] <> "Complete"
&& 'CMI Application Tracker'[Migration Start Date] = BLANK() ),
"Yes",
"No"
)
Hi @AlGrant
Can you give this a try?
At Risk start date (y/n) =
IF(
( 'CMI Application Tracker'[Cloud Migration Status] = "Not Started"
&& 'CMI Application Tracker'[Migration Start Date] < TODAY() )
||
( 'CMI Application Tracker'[Cloud Migration Status] <> "Complete"
&& 'CMI Application Tracker'[Migration Start Date] = BLANK() ),
"Yes",
"No"
)
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 20 | |
| 12 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 42 | |
| 36 | |
| 35 |