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
hermitagehermitage 

Field Update when a formula field value changes

Hi,

I have a formula field on Contacts which takes the status(Picklist) value from Accounts, it displays whatever the status value of account is. Now i have to make a field update on one of the check box with change on this status value to one of the picklist values.Is this possible?

Pradeep_NavatarPradeep_Navatar

You need  to write a workflow, and for the action select field update and in formula editior try the formula given below :

 

IF( ISCHANGED( status ) , value_if_status_changed, value_if_value_notchanged)