Skip to main content

LIST_TO_TEXT

Concatenates list of text values into text

Updated this week

Description

The LIST_TO_TEXT() function allows you to convert a list into a text value, which can be useful for processing user selections from an app.

Syntax

LIST_TO_TEXT(@list_variable, [delimiter], [text_qualifier])

Output

text

Variables

  1. list_variable: list from multi-select text variable

  2. [delimiter]: Optional setting for the text delimiter used between list items; comma (with a space) is default

  3. [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**"

Did this answer your question?