Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
Try this as a Formula Text field
The \n is the carriage return character, similar to <br>, but <br> will only work on Rich Text field types.
So the separator will be the new line, then a bullet, but if we have some data then we also need to add that first bullet to the first entry on the list.
var text VerticalMissingFirstBullet =
List("\n�",[Update 1],[Update 2],[Update 3]);
If($VerticalMissingFirstBullet <>"", "�" & $VerticalMissingFirstBullet)
The \n is the carriage return character, similar to <br>, but <br> will only work on Rich Text field types.
So the separator will be the new line, then a bullet, but if we have some data then we also need to add that first bullet to the first entry on the list.
var text VerticalMissingFirstBullet =
List("\n�",[Update 1],[Update 2],[Update 3]);
If($VerticalMissingFirstBullet <>"", "�" & $VerticalMissingFirstBullet)