Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Note
Community interest groups have now moved from Yammer to Microsoft Viva Engage. To join a Viva Engage community and take part in the latest discussions, fill out the Request access to Finance and Operations Viva Engage Community form and choose the community you want to join.
The CONCATENATE function returns all the specified text strings as a String value after they have been joined into one string.
Syntax
CONCATENATE (text 1[, text 2, …, text N])
Arguments
text 1: String
A reference to a data source of the String data type. This argument is required.
text N: String
A reference to a data source of the String data type. These additional arguments are optional.
Return values
String
The resulting text value.
Example
CONCATENATE ("abc", "def") returns "abcdef".
Usage notes
The expression "abc" & "def" also returns "abcdef".