You need to sign in to do that
Don't have an account?
MSVRad
Picklist Validation Rule Help
I am trying to write a validation rule for two picklists.
If one picklist (StageName) is on option "Closed Lost" then the second picklist "Lost Reason" cannot be "null" or a value must be selected.
I tried this:
AND (
ISPICKVAL( StageName , "Closed Lost"),
ISNULL( Lost_Reason__c )
)
Then I get an error saying that the ISNULL function cannot be used on a picklist.
Is there a function that I can use for this purpose or do I need to write an apex trigger?
Try this:
AND (
ISPICKVAL( StageName , "Closed Lost"),
ISPICKVAL ( Lost_Reason__c, "" )
)
All Answers
Try this:
AND (
ISPICKVAL( StageName , "Closed Lost"),
ISPICKVAL ( Lost_Reason__c, "" )
)