Description | The |
Syntax | LIST_TO_TEXT( |
Output | text |
Variables
list_variable: list from multi-select text variable[delimiter]: Optional setting for the text delimiter used between list items; comma (with a space) is default[text_qualifier]: Optional setting for text qualifier used to wrap each item in the list; no qualifier is default
Example
LIST_TO_TEXT(`Column 1`,`Column 2`,`Column 3`)
@List_Variable | Delimiter | Text Qualifier | CONCAT |
("Hello", "World") | NULL | NULL | "Hello, World" |
("Hello", "World") | " | " | NULL | "Hello | World" |
("Hello", "World") | NULL | "**" | "**Hello**, **World**" |
("Hello", "World") | " | " | "**" | "**Hello** | **World**" |
