In AppSheet, you can insert a line break in a LongText field by using the "\n” newline character within your expression. In your CONCATENATE formula, replace the empty string "” with "\n” so each segment is separated by a line break. For example:
CONCATENATE(
MID([Virtual INCO], 1, 70), "\n",
MID([Virtual INCO], 71, 70), "\n",
MID([Virtual INCO], 141, 70), "\n",
MID([Virtual INCO], 211, 70)
)
```
Make sure the column type is **LongText** and the display view supports multiline text, otherwise the line breaks may not render visibly.
Thanks and regards,
Taz