SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,868 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm trying to figure out the formula to validate three fields but I'm having trouble getting it to work.
Logic:
If [Request Type] <> "Upcoming Project" and Department = "IT", then [Service Location] <> ""
If the Request Type is not Upcoming Project, Department is IT, then Service Location cannot be empty.
You could use following formula in the list validation settings.
IF(AND([Request Type]<>"Upcoming Project", [Department]="IT"), IF([Service Location]<>"",TRUE,FALSE),TRUE)