SpreadJS Documentation
CONCAT
SpreadJS Documentation > Formula Reference > Formula Functions > CONCAT

This function joins the text fetched from multiple strings.

Syntax

CONCAT(textvalue1, textvalue2,...)

Arguments

This function has the following arguments:

textvalue1 Refers to a text string, or array of strings, to be joined.
textvalue2 [Optional] Refers to the additional text strings 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.

Data Types

Accepts string data. Returns string data.

Examples

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

See Also