If statements with dates >,<, blank
Need assistance with a formula to calculate the Count column:
If welcome ltr sent < = welcome ltr due then 0
If welcome ltr sent > welcome ltr due then 1
If welcome ltr sent is blank AND ltr welcome due is less than today then 1
If welcome ltr sent is blank AND welcome ltr due is >= today then 0
Answers
-
Give this a try (update column names as needed):
=IF(IF([welcome ltr sent]@row <> "", [welcome ltr sent]@row, TODAY()) > [welcome ltr due]@row, 1)
-
One more condition I forgot
If Welcome Letter due contains na then "0"
"
-
That would look like this:
=IF(AND([welcome ltr due]@row <> "na", IF([welcome ltr sent]@row <> "", [welcome ltr sent]@row, TODAY()) > [welcome ltr due]@row), 1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!