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
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 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!