Not sure if this is possible or how to proceed, any help greatly appreciated. Screenshot attached. Any ideas?
3 Antworten
Hey Brooks,
If you want to make sure all of the fields are filled in, use the following:
AND(
ISPICKVAL(StageName, "Closed Won"),
OR(
ISBLANK(Intial_Use_Cases__c),
ISBLANK(Existing_Systems_Collateral__c),
ISBLANK(Integration__c),
ISBLANK(Timeline__c))
If any of those fields are picklists, just insert the TEXT function in front of the field name...
ie. ISBLANK(TEXT(Timeline__c))
That should do it for you!
Best of luck!