Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi
I'm after some help to convert the below excel formula so I can create a custom column in my Power BI query
=IFS(
AND(ISNUMBER([@[Date Completed]]),ISBLANK([@Status])), "Missing status",
[@Status] <> "completed", "",
ISBLANK([@[Date Completed]]), "Missing completed date",
AND(ISNUMBER([@[Date Completed]]),[@[Date Completed]]<=[@[Due Date]]), "Completed on time",
TRUE, "Completed late"
)
Solved! Go to Solution.
Hi @siddrow
Thanks for reaching out to us.
You can try this measure
Measure =
SWITCH(TRUE(),
MIN('Table'[Status])=BLANK(),"Missing status",
MIN('Table'[Status])<>"completed","",
MIN('Table'[Date Completed])=BLANK(),"Missing completed date",
MIN('Table'[Date Completed])<=MIN('Table'[Due Date]),"Completed on time",
"Completed late"
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @siddrow
Thanks for reaching out to us.
You can try this measure
Measure =
SWITCH(TRUE(),
MIN('Table'[Status])=BLANK(),"Missing status",
MIN('Table'[Status])<>"completed","",
MIN('Table'[Date Completed])=BLANK(),"Missing completed date",
MIN('Table'[Date Completed])<=MIN('Table'[Due Date]),"Completed on time",
"Completed late"
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi
Please see below.
Due DateDate CompletedStatusComment
| 1/01/2022 | 1/01/2022 | Completed | Completed on time |
| 1/01/2022 | 31/12/2021 | Completed | Completed on time |
| 1/01/2022 | Completed | Missing completed date | |
| 1/01/2022 | 2/02/2022 | Completed | Completed late |
| 1/01/2022 | 3/03/2022 | Missing status | |
| 1/01/2022 | 31/12/2021 | Blabla | |
| 1/01/2022 |
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 49 | |
| 33 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 38 | |
| 28 | |
| 25 |