List

The List() function creates a list-typed collection of the provided values so it can be used in other functions and features that work with a list. All values must be of the same type.

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Syntax

List(value1, value2, ...)

List("Red", "Blue", "Yellow") => a list with 3 text-items

List('Color'.'Blue', 'Color'.'Green', 'Color'.'Orange', 'Color'.'Red') => a list with 4 concepts

Distinct( List( false, false, true, false, true ) ) => a list with 2 boolean values (because of the Distinct function used)

Parameters

Name
Type
Required
Description

value1

any

☑️

Accepts any (at least one) number of values of the same type.

Last updated

Was this helpful?