I have a concatenate function in a table’s primary field. One of the fields it combines is a rollup of companies in a Companies table. Typically, it’s one company per record, occasionally two.
To strip the pesky quotes I get when there’s comma in a company’s name (e.g. Habor Lights, Inc.), this formula only partially works:
SUBSTITUTE({COMPANIES}&"", '"', '')
When two companies are rollup up comma-separated, the formula strips that comma which is in fact needed
Company 1: Toyota Research Institute
Company 2: Abbot Ventures
Rollup: Toyota Research Institute, Abbot Ventures
With formula applied: Toyota Research InstituteAbbot Ventures
Can I improve on this formula or is there a better approach altogether?
Edit: tried the in-rollup approach suggested in this thread – Close, but no space between company names.
SUBSTITUTE(ARRAYJOIN(ARRAYUNIQUE(Companies)), '"', '')
Result: Toyota Research Institute,Abbot Ventures