I have built a workflow rule that sets a custom field value to DRAFT. The workflow is triggered on a create of a new record only, and is always TRUE (formula = TRUE).
However, if I clone an existing record, which has a value of APPROVED in the custom field, the clone ends up with a value of APPROVED in the custom field, rather than DRAFT.
Its almost like the workflow is not working (it is active for sure), or its a sequence of operations thing.
Any thoughts as to the problem and a soluition?
2 answers
Hi Chris, you could try changing the workflow criteria formula to the below
OR(
ISNEW(),
ISCLONE()
)