Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to return a different value if the reference cell is blank
09-18-2024
06:29 AM
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.
1 ACCEPTED SOLUTION
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2024
06:40 AM
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! | |
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2024
08:09 AM
Thank you that worked!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2024
06:40 AM
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! | |

Helpful resources
Announcements
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Recommendations
Subject | Author | Posted | |
---|---|---|---|
06-06-2024 11:46 AM | |||
07-04-2024 10:37 PM | |||
11-27-2023 11:47 AM | |||
Anonymous
| 05-24-2024 05:39 AM | ||
04-16-2024 04:02 PM |
Top Solution Authors (Last Month)
User | Count |
---|---|
26 | |
12 | |
11 | |
9 | |
9 |
Top Kudoed Authors (Last Month)
User | Count |
---|---|
17 | |
14 | |
13 | |
13 | |
12 |