I have a cell that has a formula that uses the Char(10) to create a carriage return. It displays correctly in Google Sheets but not in Glide (See screenshots). I’ve tried both “Text” and “Rich Text” fields.
This is the formula in Sheets:
=iferror(textjoin( CHAR(10) ,true , query(‘AFSSC done’!$A$2:$B,“select B where A='”&$A10&"’ order by B asc ") ))
How do you mean? With or without quotes? i tried both in the formula… with quotes it just displays the chracters, without the quotes the formua give an error.
CTRL+ENTER might work also. I use that for carriage returns when typing into the formula bar in google sheets. You don’t see a character, but it’s always worked for me to break to a new line.
Also change to a Rich Text Component. I don’t think Basic Text will show line breaks.
OK, I swear this worked for me before using a single line break, but maybe I was doing something different. I recall now that markdown requires 2 carriage returns for a line break. Try that and use the Rich Text component
What you see is expected. To get the effect that you want you would need to over ride the default styling with some Custom CSS. This will only be possible if your checklist is used on a Details Layout.
You could try the following in a rich text component on the same screen:
In this case, my workaround for now is to simply add a line of [nbspace]s (" " - As you probably know they look like spaces, but they aren’t ignored & output as a single space) between the text I want on my 1st line & the text I want on my second line. This of course has the side effect of giving an uneven position for the second line.
Edit:
“...so I might try to include tab characters as well.”
(Doesn’t work. Too bad there doesn’t seem to be an nbtab.)