Help with days remaining counter formula
Hello,
I am having an issue where if a date is entered in the 'submitted' column, the counter does not go away. I would like the 'days remaining' counter to stop if the 'submitted' column is populated:
=IF(ISBLANK([GWS-09 Submitted]@row), [GWS-09 Due (within 60 days of Abandonment)]@row - TODAY(), IF([GWS-09 Due (within 60 days of Abandonment)]@row - TODAY() < 0, "", [GWS-09 Due (within 60 days of Abandonment)]@row - TODAY()))
Answers
-
Hi @sriccobono,
Try inverting the last part of your formula to position the "then" part of the IF as follows:
=IF(ISBLANK([GWS-09 Submitted]@row), [GWS-09 Due (within 60 days of Abandonment)]@row - TODAY(), IF([GWS-09 Due (within 60 days of Abandonment)]@row - TODAY() >= 0, [GWS-09 Due (within 60 days of Abandonment)]@row - TODAY(),""))
I'm posting this before I test it, but I think this might be the issue. I will test in a bit myself.
Cheers,
Will
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!