You need to sign in to do that
Don't have an account?
Keerthigee
Issue related to update field in case object using workflows
Hi All,
Create a custom field on case named "Old status" and If Status field(picklist) value is changed then the old value of Status is evaluated into "old Status" Field? How can do this without using Triggers?
Using Workflow, I wrote this
In Rule criteria: ispickval(Status,"ischanged(status)").
and in workflow action: update field--Oldstatus ,and value=Proirvalue(status).
But, I didn't get previous value of status in oldstatus field.
Kindly support and suggest.
Thank you
Create a custom field on case named "Old status" and If Status field(picklist) value is changed then the old value of Status is evaluated into "old Status" Field? How can do this without using Triggers?
Using Workflow, I wrote this
In Rule criteria: ispickval(Status,"ischanged(status)").
and in workflow action: update field--Oldstatus ,and value=Proirvalue(status).
But, I didn't get previous value of status in oldstatus field.
Kindly support and suggest.
Thank you
text(PRIORVALUE(status))
All Answers
Thank you for immediate response,which is helpful
I had tried already.If we use ISCHANGED(status) in rule criteria, then it will throw error as "Function ISCHANGED may not be used in this type of formula".
Awaiting for your response.
Thank You for immediate response.
I had changed evaluation criteria to "Created,and every time it's edited".
But, I didn't get previous value of status to old status field.
Awaiting for your response.
text(PRIORVALUE(status))
Its working now.
Thank you for helping me with this solution.