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
bs881026bs881026 

how to make the workflow rule fire only when the record is updated

Hi,
Is it possible to make a WF rule fire only when the record is update. If not then what is the workAround and challenges.

Thanks.
Maharajan CMaharajan C
Hi,

If you don't want to fire a WF rule in the record creation( i.e ; WF rule fire only when the record is update)

Just add a NOT(ISNEW()) in your Rule Criteria. Afterthat add a NOT(ISNEW()) in your Rule Criteria use a && Operator to increase your Rule Citeria for whatever you want to give in WF Rule to fire.

Note: ISNEW() Function only Work For a Evaluation Criteria : Evaluate the rule when a record is created, and every time it's edited.

Let me know if you want any further help.

If those points are help means mark these as a best answer.

Thanks,
Raj
(Sweet Potato Tec)