I have a text field in my table. I can display it in fields or a text component. I want to display it in multiple lines.
Like I have ABC, PQR, XYZ;
I want:
ABC
PQR
XYZ
just like replacing (,) with (\n) works in programming
I have a text field in my table. I can display it in fields or a text component. I want to display it in multiple lines.
Like I have ABC, PQR, XYZ;
I want:
ABC
PQR
XYZ
just like replacing (,) with (\n) works in programming
You can use a template column to replace commas with <br>
. Then display it with a richtext component.
Replace comma with what ?
<br>
. I have edited it, because the code does not appear if it is not formatted.
You also replace commas with enter in the template column.
You could create a split text column by ", " and then create a join column to join it back but instead of joining by ā\nā, just type enter so it will make a line break.
This worked. Thank you sir.
My pleasure!
Even simpler, you could create a replace text column and replace ", " by the enter line break.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.