Need Flag or No Flag based on one or both of two columns being blank or within 7 days
kkath
✭
Used this formula to get No Flag and Flag result based on the date/whether the cell was blank.
=IF(ISBLANK([Date1]2), 0, IF([Date1]2<= TODAY(7), 1, 0))
Now I need to get a Flag if the date in Date2 column OR Date3 column is within 7 days and No Flag if the Date2 column OR Date3 column are blank.
I think I got the blank cell part to work:
=IF(OR(ISBLANK([Date2]2), ISBLANK([Date3]2)), 0)
I'm not sure how to add in the next-7-days part to that formula. Any ideas?
Tags:
Comments
-
This should do the trick for you.
=IF(OR(ISBLANK([Date2]2), ISBLANK([Date3]2)), 0, IF(OR([Date2]2<= TODAY(7), [Date3]2 <= Today(7)),1,0))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 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!