I need help with a validation rule, and hoping someone can chime in.
I have a picklist field named "Source" where, if the user chooses "X Value", then "Y field" below the picklist field must be required to fill out.
Any ideas? Thanks.
9 réponses
Forum Ambassador Eric Praud (Activ8 Solar Energies)
Hi Henry,
Don't use ISNULL, it's been deprecated ages ago:
AND(
ISPICKVAL(Source__c, "X"),
ISBLANK(Yfield__c)
)