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

https://community.appsheet.com/search?q=line%20break%20%23ask

3 Likes

Excellent Marc!
I found what I was looking for!

Thank you!

1 Like

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

4 Likes

Thanks, but it doesn’t work in a webhook

2 Likes