You need to sign in to do that
Don't have an account?
Task Status Validation on Multi-Select fields
I'm looking for validation rule to prevent two Multi-Select fields (Accomplished__c & Next_Steps__c) from being populated unless the Task staus is set to "Completed". This is how far I have gotten but not sure how to indicate the two multi-select fields need to be blank or if my current logic is correct so far.
AND(
NOT(ISPICKVAL(Status,"Completed")),
AND(
NOT(ISPICKVAL(Status,"Completed")),
I think I got it but I will need to tesk more.
AND(
NOT(ISPICKVAL(Status,"Completed")),
NOT(ISNULL(Accomplished__c)))
All Answers
I think I got it but I will need to tesk more.
AND(
NOT(ISPICKVAL(Status,"Completed")),
NOT(ISNULL(Accomplished__c)))