Nested IF using additional AND logical functions
I am struggling with creation of formula for defining tasks status (Green, Yellow, Red). Getting the UNPEARSEABLE or INCORRECT ARRANGMENT SET error messages.
My formula is right now as follows:
=IF(ISBLANK([RESPONSE DATE]88); "Gray", IF([RESPONSE DATE]88 <= [ORIGINAL DUE DATE]88; "Green", IF(AND([RESPONSE DATE]88 > [ORIGINAL DUE DATE]88; [RESPONSE DATE]88 <= [1st New due Date]88); "Yellow", IF([RESPONSE DATE]88 > [1st New due Date]88; "Red"))))
Maybe it is somehow related to parenthesis but I have tried a lot of combinations.
Can anybody help?
Regards
Waleed
Comments
-
Try replacing your semi-colons with commas. And delete all of the end parenthesis as Smartsheet will write those for you. That should fix the majority of your problems. Let me know if that works.
-
Thanks Mike. Unfortunately, didn't work.
-
Try this one. I checked your parenthesis and it looks good. I also checked the quotes as sometimes if you compose these things in word processor they replace straight quotes with Smart Quotes that mess up the formulas. Try copying this one straight from the community page and pasting it in. If this doesn't work, check to make sure your column titles are accurate.
=IF(ISBLANK([RESPONSE DATE]88), "Gray", IF([RESPONSE DATE]88 <= [ORIGINAL DUE DATE]88, "Green", IF(AND([RESPONSE DATE]88 > [ORIGINAL DUE DATE]88, [RESPONSE DATE]88 <= [1st New due Date]88), "Yellow", IF([RESPONSE DATE]88 > [1st New due Date]88, "Red"))))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!