If you have first names and last names in separate columns and want to combine them into one column, Excel makes this process simple. Here’s how you can do it:
The CONCATENATE function (or &
operator) allows you to combine text values from multiple cells.
Insert a New Column for Full Names:
Use the Formula:
=A1 & " " & B1
A1
with the cell containing the first name.B1
with the cell containing the last name." "
adds a space between the first and last name.Press Enter:
Copy the Formula Down:
Insert a New Column for Full Names:
Use the Formula:
=CONCATENATE(A1, " ", B1)
A1
with the cell containing the first name.B1
with the cell containing the last name.Press Enter:
Copy the Formula Down:
If you’re working with more complex data (e.g., middle names or suffixes), the TEXTJOIN function can simplify the process.
Insert a New Column for Full Names:
Use the Formula:
=TEXTJOIN(" ", TRUE, A1, B1)
A1
and B1
with the cells containing the first and last names." "
specifies the delimiter (space) between the names.TRUE
ignores blank cells.Press Enter:
Copy the Formula Down:
If you’re looking for an online solution to combine names effortlessly, CertFusion’s Name Combiner is a great option.
Access the Tool:
Upload Your Excel File:
Download the Result:
=A1 & " " & B1 & ", Ph.D."