You need to sign in to do that
Don't have an account?
gregarious
How do I build a workflow rule to update a date field when the record owner is changed?
Hello,
I was looking at the Help step-by-step topic on this, but it seems that my Field Update formula syntax is not correct.
IF(ISCHANGED(OwnerId) ,TODAY(),Date_Time_Accepted__c)
I am trying to update a custom field 'Date/Time Accepted' with the current date/time whenever Case Ownership has changed.
Thanks in advance,
Greg
Are you trying to do this with a Workflow Rule and a Field Update, or are you just trying to create a Formual(Date) field?
For a Workflow Rule your trigger would just be
and your Workflow Action would be Field Update:
Field: Date_Time_Accepted__c
Formula:
All Answers
Are you trying to do this with a Workflow Rule and a Field Update, or are you just trying to create a Formual(Date) field?
For a Workflow Rule your trigger would just be
and your Workflow Action would be Field Update:
Field: Date_Time_Accepted__c
Formula:
Ahh...simple. Thanks Stevemo.