You need to sign in to do that
Don't have an account?

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
Try something like this in a workflow field update (formula).
MyTextField & BR() & PRIORVALUE( MyTextField )
All Answers
Try something like this in a workflow field update (formula).
MyTextField & BR() & PRIORVALUE( MyTextField )
Thanks for the help, it works..