[]
        
(Showing Draft Content)

CONCAT

This function joins the text fetched from multiple strings.

Syntax

CONCAT(textvalue1, [textvalue2], ...)

Arguments

This function has the following arguments:

Argument

Description

textvalue1

[Required] Refers to a text string, or array of strings, to be joined.

textvalue2, ...

[Optional] Additional text items to be joined.

Remarks

There can be a maximum of 253 text items in arguments (including textvalue1 ).

In the result, this function never includes the delimiter (spaces, ampersands etc.) between each text value and never eliminates the empty arguments.

Examples

CONCAT("Riot", ", ", "Pauler") gives the result Riot Pauler