Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
If that works but you do not like the bubble appearance, then there are a variety of formulas to turn that field into text and use any character is a separator. For example, this one will turn it into a vertical list.
var text CombinedText = ToText([My Text Concatenation Field]);
var text RemoveSpaceAfterSemiColon =
SearchAndReplace($CombinedText, "; ",";");
// substitute new line for semicolon
SearchAndReplace($RemoveSpaceAfterSemiColon,";","\n")
var text CombinedText = ToText([My Text Concatenation Field]);
var text RemoveSpaceAfterSemiColon =
SearchAndReplace($CombinedText, "; ",";");
// substitute new line for semicolon
SearchAndReplace($RemoveSpaceAfterSemiColon,";","\n")
QuickBaseCoachD
7 years agoQrew Captain
You can still group by that field on a report, I assume.