Date and Conditional Symbol - IF Then Statements
Hello,
I have two columns:
1) Project Timing - A column with symbols. I only want to use the single and double diamond (ignoring the other symbols).
2) Target Start Date - A date when the project will start (can be in the future or the date may have passed already).
How do I create a conditional statement that shows a symbol under Project Timing Column that says:
If the Target Start Date is in the past or within the next 365 days, show a single diamond.
If the Target Start Date is past the next 365 days, show a double diamond.
If neither condition is met, for example a missing Target Start Date, then show a blank value.
Thank you!
Amy
Best Answer
-
Try something like this...
=IF([Target Start Date]@row <> "", IF([Target Start Date]@row <= TODAY(365), "Advanced", "Experts Only"))
Answers
-
Try something like this...
=IF([Target Start Date]@row <> "", IF([Target Start Date]@row <= TODAY(365), "Advanced", "Experts Only"))
-
Paul,
Wow, this is really well written. I attempted, but my statement was much clunkier.
Thank you!
Amy
-
Happy to help! 👍️
Sometimes it just takes a fresh set of eyes. Haha
-
I'm having trouble following that. Where is the "THEN" in the If-Then statement?
-
@hcosta52671 Exactly what are you trying to accomplish? The basics of an IF statement are...
=IF(this is true, then output this, otherwise output this)
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!