Skip to main content
Can you create a workflow to generate an email if an amount increases/decreased by a specific dollar amount?

 

Example:

 

Opportunity Amount increases by $250,000 and an email is sent to Sales Director.

 

Thank you for your help!!!
1 answer
  1. Mar 23, 2016, 5:49 PM
    Yes, you could! You have a Workflow Rule

    with specs:

    1. Evaluation Criteria: created and every time it's edited [ 2ND OPTION ]
    2. Rule Criteria: formula evaluates to true
    3. Formula

      AND(

      ISCHANGED(Amount),

      ABS(PRIORVALUE(Amount) - Amount) = 250000

      )

    4. Then add the Email Alert as the Immediate Action.
0/9000