- Can I use ARRAYTOTEXT to convert an entire table with both headers and data?
- Yes, you can pass a range that includes headers and multiple rows. ARRAYTOTEXT joins all values in sequence using your chosen delimiter. However, the result is a single line; if you need multi-row formatted output, consider exporting directly to CSV format instead.
- What's the difference between ARRAYTOTEXT and TEXTJOIN?
- ARRAYTOTEXT is simpler and limited to two preset delimiters (comma or space). TEXTJOIN is more flexible, allowing any custom delimiter, and gives you options to skip empty cells. Choose ARRAYTOTEXT for quick, simple conversions; use TEXTJOIN when you need more control.
- If my campaign names contain commas, will ARRAYTOTEXT break the output?
- Yes, commas in your data will not be escaped or quoted. The output would be ambiguous. If your source data contains the delimiter character, use format 1 (space-separated) instead, or switch to TEXTJOIN with a different delimiter.
- Does ARRAYTOTEXT work with spilled arrays from other functions like UNIQUE or FILTER?
- Yes, ARRAYTOTEXT accepts the output of any function that returns an array, including UNIQUE, FILTER, and SORT. This lets you convert filtered or deduplicated campaign lists directly to text without intermediate steps.