Announcements
The Google Cloud Community will be in read-only from July 16 - July 22 as we migrate to a new platform; refer to this community post for more details.

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,989
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
Top Labels in this Space