Line break character for concatenated text

Hello everybody!
Could anyone tell me if it is possible to include line break character in a concatenated text string?

is it possible to create a long text string this way?
CONCATENATE (“Name:”, [Name],
CHAR CODE FOR LINE JUMP ?? ,
“Preferred Color:”, [PREFERRED COLOR])

and get the result in a single field …
Name: John
Favorite color: Red

Thanks

Solved Solved
0 5 3,417
1 ACCEPTED SOLUTION

5 REPLIES 5

Excellent Marc!
I found what I was looking for!

Thank you!

can you re-share solution link please


@LEX_STUDIO wrote:

can you re-share solution link please


In the example of the topic starter the expected behavior is:
Name: John
Favorite color: Red

The code will be:
CONCATENATE(
"Name:", [Name],
"
Preferred Color:", [PREFERRED COLOR]
)

 

You need to press enter to create a link break after the opening quotation mark in the Preferred Color

Thanks, but it doesn't work in a webhook

 

Top Labels in this Space