Add a return carriage to a text field

I have a TEXT field on a form and I would like the text to be formatted across two lines, like this:

Name of Person Involved
(Last, First, Middle Initial)

But, AppSheet wants to wrap text. How can I add a return at the end of the word “involved?” I have tried a concatenante formulate but I am having no luck.

Thanks!

Solved Solved
1 7 1,684
1 ACCEPTED SOLUTION

Change the type to LongText, they support line breaks.

You’ll be able to concatenate things then:

Concatenate(
"Name of person Involved
(", [Last], ", ", [First], ", ", [Middle Initial], ")"
)

View solution in original post

7 REPLIES 7

Change the type to LongText, they support line breaks.

You’ll be able to concatenate things then:

Concatenate(
"Name of person Involved
(", [Last], ", ", [First], ", ", [Middle Initial], ")"
)

This worked! Thank you so much!

Former Community Member
Not applicable

This doesn’t seem to work anymore…

Hi @tsambruni
Could you post a screen shot of your expression. Did it work previously?

Former Community Member
Not applicable

Hi, haven’t tried this previously.
I was looking for a way to split concatenated fields over multiple lines, then i found this post.
Anyway, in my case i set up a calculated column as long text to be displayed in a card layout field:

CONCATENATE("Line1 ", [Value1], "

 Line2: ", [Value2])

But it keeps displaying inline…

Card views cannot display line breaks.

Former Community Member
Not applicable

Thanks for clarifying

Top Labels in this Space