function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
KerryGroup DevKerryGroup Dev 

Update field when another field is updated.

I have a set of fields on a custom object.

Field1

Field2

Field3

AnotherField1

AnotherField2

FieldChangedDate

 

The fields are all number field except for the field “FieldChangeDate” which is a date and time field.

 

My question is, is there a way for me to automate updating the field “FieldChangeDate” when ever Field1, Field2 or Field3 changes?

 

I’m currently exploring work flow rules but so far I’m having no luck getting them to update that field when another field changes.

 

Thanks for any advice or tips.
zakzak
This should be doable with the Field Updates action in Workflow.
KerryGroup DevKerryGroup Dev
What criteria do I use to detect a change in Field1, Field2 or Field3? And if there is no change in those fields how do I know not to update the FieldChangedDate?
gregj777gregj777

Were you able to resolve this issue? I am currently having the same problem.

 

Right now I am using ISCHANGED(Fiedl1) but it will not work for multiple fields.