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

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??
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??
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
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