Skip to main content

CONCAT

Use CONCAT to join two or more text values into one text value.

Use

CONCAT( text1, [text2], ...)
Joins several text items into one text item

ParameterRequiredDescription
text1YesThe first item to join. The item can be a text value, number, or cell reference.
text2, ...NoAdditional text items to join.

Returns'Text'

Use with literals

CONCAT("The", " ", "Sun", " ", "is", " ", "Shining")

returns "The Sun is Shining"

Use with fields

CONCAT(@LocateCustomer.out.Forename, " ", @LocateCustomer.out.Surname)

returns "Jane Blogs" where @LocateCustomer.out.Forename is "Jane" and @LocateCustomer.out.Surname is "Blogs"