Flag formula?
Trying to use flag column...if date is within 3 days = flag, if not, or blank = no action. Below is the formula that is not working. What am I doing wrong?
=IF (ISBLANK([Submit by]@row)), 0, =IF([Submit by]@row <= TODAY(+3)), 1
Thanks!
Best Answer
-
Hey @Becky Greenbury
The parentheses in the formula are closing off too soon and not allowing the formula to execute.
Try this
=IF(ISDATE([Submit by]@row), IF([Submit by]@row <= TODAY(3), 1))
Is it ok that the flag stays lit if the [Submit by] was yesterday, or last week, or last year, etc? The formula says ON if it's TODAY+3 or less.
If you wanted the flag to only be on for Today up to Today(3) then use this formula instead
=IF(ISDATE([Submit by]@row), IF(AND([Submit by]@row <= TODAY(3), [Submit by]@row > TODAY(-1)), 1))
cheers,
Answers
-
Hey @Becky Greenbury
The parentheses in the formula are closing off too soon and not allowing the formula to execute.
Try this
=IF(ISDATE([Submit by]@row), IF([Submit by]@row <= TODAY(3), 1))
Is it ok that the flag stays lit if the [Submit by] was yesterday, or last week, or last year, etc? The formula says ON if it's TODAY+3 or less.
If you wanted the flag to only be on for Today up to Today(3) then use this formula instead
=IF(ISDATE([Submit by]@row), IF(AND([Submit by]@row <= TODAY(3), [Submit by]@row > TODAY(-1)), 1))
cheers,
-
Perfect, that did it. Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!