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
RupBRupB 

Workflow - update field, by concatenating 2 fields + newline

Hi,

On a workflow, I am concatenating Subject and Description on Case; I would like to add a line break between the two, but none of the following work :

 

Subject + "\n" + Description

Subject + '\n' + Description

Subject + "<br>" + Description

 

What should I use ?

 

RUp 

shillyershillyer

Subject + BR() + Description

 

Hope that helps,

Sati

AishAish
Try Subject + (BR) + Description
Sindhura ManthapuriSindhura Manthapuri
Subject + BR() + Description worked for me. Thanks!