Skip to main content
I have a custom date/time field in my Acct. Object that updates whenever the Account Status field is changed. But it doesn't populate when the Account is initially created. How can I change the rule so that the date autopopulates once conversion from a Lead is complete? Here is the WFR I have already in place that I'd like to add to:

 

Field update during Acct. creation
6 answers
  1. Aug 22, 2012, 3:04 PM
    The rule criteria needs to be changed to allow for the new record.  Since the status isn't actually being changed, it is simply being filled in for the new record.  I would simply use

     

    AND(

     

    ISBLANK(date/time Field),

     

    ISCHANGED(Account_Status__c)

     

    )
0/9000