Arguments
text1- The first text or cell to join.text2(optional) - Additional text or cells.
Joins text from several cells or literal strings into one value.
Syntax
=A1 & " " & B1 or =CONCAT(text1, [text2], …)text1 - The first text or cell to join.text2 (optional) - Additional text or cells.=A2 & " " & B2Returns: First and last name with a space
The & operator is the most portable way to join text.
=CONCAT(A2:A5)Returns: All values in the range run together
CONCAT accepts ranges; use TEXTJOIN when you need a delimiter.
Yes. CONCAT & the & operator uses the same syntax in Google Sheets and LibreOffice Calc, so you can paste these formulas straight across.