Forum Discussion
laser132217
Nov 18, 2022Copper Contributor
Multiple conditional statements in list validation
Hi,
I am trying to create a list validation formula that passes validation when the following conditions are met:
1) [Action] column length is less than 500 characters
OR
2) [Outcome] column is not blank when [Status] column does not equal “Complete”(i.e. I want to require an entry in [Outcome] if the [Status] equals @ “Complete”).
I’ve been trying to get both conditions working on their own before attempting to combine.
The first condition above I’ve solved with =LEN((Action)<500).
The second condition above I can’t get to work at all.
Any help coming up with the formulas and combining would be greatly appreciated.
laser132217 Try using this formula:
=OR(LEN([Action])<500, IF([Status]="Complete", IF(ISBLANK([Outcome]), FALSE, TRUE), TRUE))
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
laser132217 Try using this formula:
=OR(LEN([Action])<500, IF([Status]="Complete", IF(ISBLANK([Outcome]), FALSE, TRUE), TRUE))
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.