You need to sign in to do that
Don't have an account?
Picklist Validation Rule when only 1 list item should trigger rule
Hello,
I have a picklist field, homefree__c, with 4 values, but I only want a validation rule to create an error if only 1 of the list values is chosen; Echo
I tried this, but its not working, please help:
I have a picklist field, homefree__c, with 4 values, but I only want a validation rule to create an error if only 1 of the list values is chosen; Echo
I tried this, but its not working, please help:
TEXT(NOT(homefree__c,"Echo"))
Use this
TEXT(homefree__c)=="Echo"
All Answers
Use this
TEXT(homefree__c)=="Echo"