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")
- ChrisNewsome7 years agoQrew CaptainWould the bubble affect how it shows up in reports? I want to group by this field on a report.
- QuickBaseCoachD7 years agoQrew CaptainYou can still group by that field on a report, I assume.