Add line break, new line

Hello, is it possible to add a linebreak (new line) in Appsheet text?

So the sum would appear in the new line, tried CHAR(), “\n” - does not work.

I believe you can only get lines breaks in a ‘Show’ column. In that type of column, the text will display how you enter it, including line breaks

1 Like

You mead as this

No it is not.

hello, can you tell me how did you do that? line break in Invalid value error?

There are many posts on line breaks in the community.

In general you could do it as below

CONCATENATE(“text string1”, "
", [a text column], "
", “Text string 2”)

or another example

CONCATENATE([Text column 1], "
", “Text string 1”, "
", “Text string 2”)

The above are just examples. You can have much larger number of columns values and text strings and combinations of those in the CONCATENATE()

1 Like

Sorry for the late reply, for example for this result

I use this formula, You must use substitute because otherwise it will make a single line, For separate lines you should use it

I hope this solves what you need

Regards

2 Likes

The _THISROW dereferences are unneeded here:

1 Like

Thanks for correcting me

1 Like