Add line break, new line

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

ArturasF_0-1712056717047.png

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

Solved Solved
0 8 2,847
  • UX
1 ACCEPTED SOLUTION

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

View solution in original post

8 REPLIES 8

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

No it is not.

You mead as this

LeviP_0-1717787929016.png

 

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()

 

Sorry for the late reply, for example for this result

LeviP_0-1733197017164.png

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

LeviP_2-1733197641393.png

I hope this solves what you need

Regards

 

The _THISROW dereferences are unneeded here:

Steve_0-1733237532516.png

Thanks for correcting me