logo
excelfunctions.org
bookmarks

CONCATENATE

Joins several text items into one text item.

TextMost UsedText Processing

What it does

Joins text strings together into one text value (legacy; CONCAT is the newer equivalent).

Syntax

CONCATENATE(text1, [text2], ...)

Arguments

  • text1(text) β€” First text item to join.

Examples

Join first and last name

Combine First and Last with a space.

FORMULA
=CONCATENATE(A2," ",B2)
RESULT
Ana Silva
SAMPLE DATA
AB
1FirstLast
2AnaSilva
3TomLee