Using a Workflow, how to concat a string + new lin...
# suiteflow
e
Using a Workflow, how to concat a string + new line + string? So far, I can concat the strings using this syntax
{custom_field} || {more_text}
But! I need the
more_text
after a new line. Any idea?
j
{custom_field} || CHR(10) || {more_text}
e
Thanks @jen