# CONCAT

## Content

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

`<span data-highlighted="true" data-vc="highlighted-text" style="color: rgb(41, 42, 46); font-family: 'Atlassian Sans', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Ubuntu, 'Helvetica Neue', sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: pre-wrap; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">CONCAT</span>``("Riot", ", ", "Pauler")` gives the result Riot Pauler.