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
CKGCKG 

Text Field Update without changing the present value

Hi,

Am working on a text field (ex:XYZ) update. this is a long text area which basically works for the leads web activity. i have a custom field ABC which updates the last activity of the lead. every time ABC field get a new value i want the text field XYZ to be updated with the new value without deleting the old value.The old update should not be removed and the new value should come on the first line. not sure on how the forumala should help in this matter,. even though i tried it takes off the old value.

 

Thanks in Advance

 

Regards,

CK

 

 

 

 

 

Best Answer chosen by Admin (Salesforce Developers) 
MarkSilberMarkSilber

Try something like this in a workflow field update (formula).

 

MyTextField & BR() & PRIORVALUE( MyTextField )

 

All Answers

MarkSilberMarkSilber

Try something like this in a workflow field update (formula).

 

MyTextField & BR() & PRIORVALUE( MyTextField )

 

This was selected as the best answer
CKGCKG

Thanks for the help, it works..