# CONCATENATE

The CONCATENATE function concatenates two or more text strings into one string.

## Syntax

```javascript
concatenate(string1, string2, ..)
```

## Arguments

string1, string2.. - Text strings to be joined&#x20;

## Example

```javascript
concatenate ("Today's price is ",text(6000,"$###,###.00"))
```

The above formula returns 'Today's price is $6,000'

## **Excel equivalent**

[CONCATENATE](https://support.microsoft.com/en-us/office/concatenate-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d)
