Formula based on date and status columns
I currently have the below formula in a column titled "Health' to create a symbol if the request was created more than 21 days ago (red) or less than 21 days ago (green). However, I want this formula to also include the status column that would include "received" or "open" and exclude the "submitted" status. How do I do this?
Current formula without status column being included:
=IF([Request Creation Date]@row < TODAY(-21), "Red", "Green"
Answers
-
Good evening,
Try:
=IF(AND([Request Creation Date]@row< TODAY(-21), Status@row <> "submitted"), "Red", "Green")
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
I inserted the below formula, (note: the accurate column title is "Submitted (SOW presented to requester, waiting response)" and the rows that have been submitted are still returning a red or green symbol.
=IF(AND([Request Creation Date]@row < TODAY(-21), Status@row <> "[Submitted (SOW presented to requester, waiting response)]"), "Red", "Green")
-
Try:
=IF(AND([Request Creation Date]@row < TODAY(-21), [Submitted (SOW presented to requester, waiting response)]@row <> "Submitted"), "Red", "Green")
Work this time?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 437 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
Check out the Formula Handbook template!