Unparseable error being returned
I am not finding the error in my formula, Client is a text field and Start and end dates are Date fields. Any help would be greatly appreciated
Regards
Michelle
=IF(AND([Client]1= "In Progress", [End Date]1 < TODAY()), "Moderate", IF(And([Client]1 = "In Progress",[End Date]1 = > TODAY()), "Mild",IF(And([Client]1= "Not Started",[Start Date] <TODAY(-5)),"Extreme",IF(And([Client]1= "Not Started",[Start Date] <TODAY(-4)),"Severe",IF(And([Client]1= "Not Started",[Start Date] =>TODAY()),"Mild", IF(Client1="Completed" , "No Pain"))))))
Comments
-
Hi Michelle, Your start dates do not reference a row number. Try this one.
=IF(AND([Client]1= "In Progress", [End Date]1 < TODAY()), "Moderate", IF(And([Client]1 = "In Progress",[End Date]1 = > TODAY()), "Mild",IF(And([Client]1= "Not Started",[Start Date] <TODAY(-5)),"Extreme",IF(And([Client]1= "Not Started",[Start Date]1 <TODAY(-4)),"Severe",IF(And([Client]1= "Not Started",[Start Date]1 =>TODAY()),"Mild", IF(Client1="Completed" , "No Pain"))))))
-
Thank you Mike, so obvious once pointed out.
Regards
Michelle
-
You may also run into an #INVALID OPERATION error once you get the #UNPARESEABLE issue fixed because of this part here...
..... "In Progress",[End Date]1 = > TODAY()), "Mild".......
.
May need to swap it to
......... "In Progress",[End Date]1 >= TODAY()), "Mild"..........
-
@Paul - Good catch!!! That will produce an error as well.
-
There is also a second instance of this in the second to last IF statement that I missed on the first look.
-
Thank you Paul, and I did get the 2nd error and actually found that one on my own!
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!