Google Sheets
CONCATENATE function in Google Sheets
Appends strings to one another.
=CONCATENATE(string1, [string2, ...])CONCATENATE syntax and parameters
Two arguments, one required.
- string1stringRequired
The initial string.
- string2stringRepeating
[ OPTIONAL ] - Additional strings to append in sequence.
CONCATENATE examples
Formulas you'll actually reuse.
A full name from first- and last-name columns:
=CONCATENATE(A2, " ", B2)Result
"Maria Lopez"A zero-padded invoice number with the year:
=CONCATENATE("INV-", TEXT(C2, "0000"), "-", TEXT(D2, "yyyy"))Result
"INV-0042-2026"
CONCATENATE in Excel
Same name — your formula ports as-is.
Try CONCATENATE in the playground
Edit the example — nothing to install.
Preloaded with the CONCATENATE formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- ARABICComputes the value of a Roman numeral.TextExcel
- CHARConvert a number into a character according to the current Unicode table.TextExcel
- CLEANReturns the text with the non-printable ASCII characters removed.TextExcel
- CODEReturns the numeric Unicode map value of the first character in the string provided.TextExcel
- DOLLARFormats a number into the locale-specific currency format.TextExcel
- EXACTTests whether two strings are identical.TextExcel