Combine First and Last Names
First and last names live in separate columns, but your mail merge, export, or report needs one "Full Name" column.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
The & operator glues text together, so A2&" "&B2 joins the first name, a space, and the last name. It's the fastest way to combine two columns. When some cells might be empty — a missing middle name, say — TEXTJOIN is smarter: =TEXTJOIN(" ",TRUE,A2,B2,C2) joins everything with single spaces and the TRUE tells it to skip blanks entirely, so you never get doubled spaces.
When to use it
Use & for a quick two-column join. Switch to TEXTJOIN when combining three or more parts, or when any part might be blank.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08