How to automatically assign a Symbol when comparing two date columns?
This is what I got.
=IF([Launch Date]@row >= [Estimated Delivery Date]@row, "Green", IF([Launch Date]@row < [Estimated Delivery Date]@row, "Red"))
However, I want "Yellow" to be assigned when the [Estimated Delivery Date] is less than 30 days from the [Launch Date].
Appreciate the insight.
Answers
-
Hi @Roberto Sanchez
Hope you are fine, please try the following formula:
=IF(OR([Estimated Delivery Date]@row = "", [Launch Date]@row = ""), "", IF([Launch Date]@row - [Estimated Delivery Date]@row >= 30, "Green", IF([Launch Date]@row < [Estimated Delivery Date]@row, "Red", IF([Launch Date]@row - [Estimated Delivery Date]@row < 30, "Yellow"))))
the following screenshot shows the result:
bassam.khalil2009@gmail.com
☑️ Are you satisfied with my answer to your question? Please help the Community by marking it as an ( Accepted Answer), and I will be grateful for your "Vote Up" or "Insightful"
-
Thank you so much. Worked as intended on my end.
-
Excellent, I will be happy to help you any time. Please help the Community by marking it as an accepted answers
bassam.khalil2009@gmail.com
☑️ Are you satisfied with my answer to your question? Please help the Community by marking it as an ( Accepted Answer), and I will be grateful for your "Vote Up" or "Insightful"
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65K Get Help
- 443 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 129 Brandfolder
- 150 Just for fun
- 70 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!