Skip to main content
Violeta Roshka (Salesloft) 님이 #Data Management에 질문했습니다
Hi,

 

We have users who move opportunites to Lost stage and a couple of days later create a new one for the same account. I am trying to create an email notification that will alert managers when an opportunity is created within 30 days after they closed Lost another one for the same account. Need some help! thanks!
답변 13개
  1. 2019년 10월 21일 오후 5:36

    In a Workflow Rule the Formula would be like this

    AND(

    ISNEW(),

    TEXT(Type) = "New Deal",

    ​​​​( TODAY() - Account.Last_ClosedLost_Date__c ) <= 30

    )

     

     
0/9000