Text
Joins two or more text strings into one string. Note: CONCAT and & operator are modern alternatives.
=CONCATENATE(text1, [text2], ...)text1First text string to join
text2(text)Additional text strings (optional)
=CONCATENATE(A1, " ", B1)Combines first name, space, and last name
Result: Full name
=CONCATENATE(A1, "@", "company.com")Combines username with domain
Result: user@company.com
=CONCATENATE(A1, ", ", B1, " ", C1)Combines street, city, and zip code
Result: Complete address
Our AI can generate tailored formulas based on your specific needs
Generate Custom Formula