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
sathishsfdcsathishsfdc 

append in Workflow formula both values

Hi,

I have 2 values comment__c, comment1__c, being used in a Workflow.

Now i need to append the comment__c value to the end of comment1__c value.
How can i achieve this??
 
shiva pendemshiva pendem
Hi Sathish,

1)Create a workflow on your object with some condition.
2)Create a field update under that workflow update comment1__c. Use formula to return value in that formula give (Comment1__c+Comment__C)

Hope  this will helps you.

Thanks ,
Shiva Pendem
William TranWilliam Tran
Be careful that you comment1__c does not grow out of control since it is continually adding comment__c to it.

I suggest adding create a formula field "Combined Comments" and set it up to Comment1__c+Comment__C.

And if a formula field is not long enough, create new long text area field called "Combined Comments" and use workflow to update "Combined Comments" = Comment1__c+Comment__C

Thx