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")
ChrisNewsome
7 years agoQrew Captain
Would the bubble affect how it shows up in reports? I want to group by this field on a report.