You need to sign in to do that
Don't have an account?
omarjmansour.ax1111
Workflow to update field for prior picklist value
Hi,
I have a status picklist that I would like to track. I created a text field called Previous Status that I would like to display the last status the picklist was set to.
I have a workflow set for to fire when the status changes (ISCHANGED) that is working fine. But my field update is populating the text field with numbers (1-4, the number of values on the picklist).
I know the problem is with the field update formula, but I'm not sure how to fix. Currently the formula is:
PRIORVALUE( Permit_Status__c ) Which I know is wrong.
Has anyone done this before?
Try the following in the Field Update:
TEXT(PRIORVALUE(<field_name>))
All Answers
Try the following in the Field Update:
TEXT(PRIORVALUE(<field_name>))
Worked like a charm!! Thanks for your help!