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! | |
