Skip to main content
Would like Forecast Category Value 'Omitted' to only be selected once the Opportunity Stage is 'Closed Lost' or 'Closed Lost Renewal' 
2 risposte
  1. 15 ago 2018, 13:57
    Hi Serena

     

    Try this (Make sure you replace the field names with the correct api names in the rule below)

    AND(

    ISPICKVAL(Forecast category, "Omitted"),

    NOT(ISPICKVAL(Stage, "Closed Lost")),

    NOT(ISPICKVAL(Stage, "Closed Lost Renewal"))

    )

0/9000