Skip to main content
However once I save the record, the other stages can't be selected, which is fine.  However the one stage I want selected (Discovery) can't be chosen as well.  This only happens on creation of the record.

 

AND(

 

   OR (

 

   ISNEW(),

 

   (ISPICKVAL (StageName, "Discovery")),

 

       NOT(ISPICKVAL (StageName , "Qualified")),

 

       NOT(ISPICKVAL (StageName , "Proposal")),

 

       NOT(ISPICKVAL (StageName , " Confirmation ")),

 

       NOT(ISPICKVAL (StageName , "Selection")),

 

       NOT(ISPICKVAL (StageName , "Contractual Terms"))))
4 件の回答
  1. 2015年1月7日 18:44

    Alright! Can you try:

    AND(

    ISNEW(),

    OR(

    ISPICKVAL(StageName, "Qualified"),

    ISPICKVAL(StageName, "Proposal"),

    ISPICKVAL(StageName, "Confirmation"),

    ISPICKVAL(StageName, "Selection"),

    ISPICKVAL(StageName, "Contractual Terms"),

    IsClosed

    )

    )

0/9000