Ondina Sturges
06/25/2023, 8:08 PMDavid B
06/25/2023, 8:36 PM'text: ' || {field1} || '<br>text: ' || {field2} || '<br>text: ' || {field3}
which can also be written as this for readability:
'text: '||{field_1}||'<br>'||
'text: '||{field_2}||'<br>'||
'text: '||{field_3}
Marc
06/25/2023, 8:41 PMDavid B
06/25/2023, 8:44 PMCONCAT
at all?
You could just go full in:
CONCAT(CONCAT(CONCAT('text: ',{custentityengagement_coordinator_c}),'<br>'),
CONCAT(CONCAT(CONCAT('text: ',{custentityprogram_manager_ms_c}),'<br>'),
CONCAT('text: ',{custentitycustomer_success_advisor_c}))
But I know which one I'd rather useOndina Sturges
06/25/2023, 8:49 PMOndina Sturges
06/25/2023, 8:49 PM