Skip to main content
I am trying to write a formula that will fill in a Date Field on the Opportunity with the date that the Opportunity is created/converted, but ONLY when we have a particular lead sourse. How would I go about doing this?
10 respuestas
  1. 20 ago 2013, 21:05
    I would create a Formula(Date) or Formula(DateTime) field and then use an IF statement that evaluates the Opportunity.Lead Source, or create a custom Field on the Lead and the Opportunity and map the field from Lead to Opportunity.  

     

    Your Formula(Date) or Formula(DateTime) would be something like:

     

    IF(LeadSource = "X", CreatedDate, NULL)
0/9000