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
fsiddiq3fsiddiq3 

Workflow help needed

I am trying to create a workflow that will essentitally create a version if a record has been edited. For example in my setup I have a object that has a number field from 1-13. If any of those 13 fields are edited I want to set up something where I can say version 1. If any one of those fields are edited again I want to say version 2. I created a field called version as well. What is the best way to do this?

 

IF((Ischanged Period_1_c, period_2_c), Version_c + 1, Version_c)

 

something like this? This logic didn't work when I tried it. Let me know if anyone has any helpful suggestions! Thanks guys!

 

:-)