Concat
The Concat function combines one or more text strings into a single string.
Syntax
Function arguments:
Notes
- Concat doesn’t automatically add spaces between strings. To add a space in the output, include
" "as its own argument. - To concatenate a value of another data type with text data, convert the values to text using quotation marks or the Text function.
- To concatenate a date value with a string, place quotation marks around the date value, such as
"2024-01-01". - To convert values from a column of another data type to text, use the Text function, such as
Text([ID Number]).
- To concatenate a date value with a string, place quotation marks around the date value, such as
- Optionally, use the
&operator to concatenate multiple text values for concision. For example,Concat([First Name], " ", [Last Name])is equivalent to[First Name] & " " & [Last Name].
Examples
Returns queenbee.
Returns queen bee.
Combines a column of names with their corresponding ID numbers. For example, if the Name column contains John and the ID No column contains 123, the output is John123.
When the newline character (\n) is added as an argument, the subsequent argument is displayed on a new line. To view the output on separate lines in Sigma, select More options > Wrap text
.
![A table shows the output of the formula Concat([Store Region], "\n", [Store State]). A user hovers over wrap text to demonstrate that the output is on separate lines](https://files.buildwithfern.com/sigma.docs.buildwithfern.com/020e28363a07ad4e96064cc8dae60559be0eb4fc6d2ee1ce9c5a071ecf7169eb/assets/docs-images/3153d231d13ae665d35a713e53745b05ca0f5e8b9bf524b1884a219a145e626c-update_concat_screenshot.png)

