Skip to main content
Need to create a rule that requires users who update an opportunity to Closed Won to also be required to fill out several text area(255) fields regarding Implementation Details.

 

Not sure if this is possible or how to proceed, any help greatly appreciated. Screenshot attached. Any ideas?

 

Validation Rule for Closed Won
3 Antworten
  1. 15. Jan. 2014, 00:46
    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!
0/9000