Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
Looking for help to solve this issue.
My command is still returning "Overdue" when the Due Date column is blank. How can I only return Overdue if the Due Date is > Today?
Thank you
Solved! Go to Solution.
Hi,
You can try this
OverdueStatus =
IF(
ISBLANK('YourTable'[Due Date]),
BLANK(),
IF(
'YourTable'[Due Date] < TODAY(),
"Overdue",
BLANK()
)
)
Proud to be a Super User! | |
Thank you that worked!
Hi,
You can try this
OverdueStatus =
IF(
ISBLANK('YourTable'[Due Date]),
BLANK(),
IF(
'YourTable'[Due Date] < TODAY(),
"Overdue",
BLANK()
)
)
Proud to be a Super User! | |
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
18 | |
18 | |
17 | |
16 |
User | Count |
---|---|
27 | |
26 | |
19 | |
15 | |
14 |