Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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! | |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
26 | |
12 | |
11 | |
9 | |
9 |
User | Count |
---|---|
17 | |
14 | |
13 | |
13 | |
12 |