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
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 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!