SheetRocks
Documentation/Formulas/CONCATENATE

CONCATENATE

Returns the concatenation of a list of arguments.

Syntax

CONCATENATE(text1, [text_n])

Arguments

Argument Description Required
text1 The first text to join. Required
text_n Additional text to join to the first text. Optional

Examples

Concatenate multiple text strings

=CONCATENATE("Hello", " ", "World")
Result ⇒ Hello World

Concatenate text with number

=CONCATENATE("Value: ", "42")
Result ⇒ Value: 42

Concatenate cell values

=CONCATENATE(A1, " ", A2)
Result ⇒ John Doe
A
1 John
2 Doe

Related Functions

Other Text functions:


← Back to Formula Reference