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
- Customer Resources
- 65.9K Get Help
- 429 Global Discussions
- 146 Industry Talk
- 486 Announcements
- 5.2K Ideas & Feature Requests
- 86 Brandfolder
- 151 Just for fun
- 73 Community Job Board
- 498 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 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!