Microsoft Excel Posts & Guides
How to Combine First and Last Names in Excel (CONCATENATE & Ampersand Guide)
- August 28, 2026
- Posted by: SPiyush
- Category: Microsoft Excel Functions Microsoft Excel Tips

Previous post: Microsoft Excel or Microsoft Word: The Battle for Better Tabular Data
Have you ever imported a client list into Microsoft Excel only to find that the first names and last names are stuck in completely separate columns?
Manually retyping hundreds of full names is a massive waste of time. Excel provides two incredibly fast ways to merge text from multiple cells into one: the CONCATENATE function and the Ampersand (&) operator.
In this step-by-step tutorial, you will learn exactly how to use both methods and how to safely handle spaces so your data looks clean and professional.
Method 1: Combining Text Using the Ampersand (&) Operator
The absolute easiest and most common way to join strings in Microsoft Excel is by using the Ampersand (&) symbol. Think of it as a glue icon that sticks text together.
The Formula Syntax:
=Cell1 & " " & Cell2
Step-by-Step Example:
Let’s say your user’s First Name is in cell A2 (John) and their Last Name is in cell B2 (Smith).
1. Click on the empty cell where you want the full name to appear (Cell C2).
2. Type the following exact formula:
excel
=A2 & " " & B2.
3. Press Enter.
Why the " " matters: If you only type =A2 & B2, Excel will output JohnSmith without a space. Putting a space inside double quotation marks tells Excel to add a blank character between the names.
Method 2: Using the Built-In CONCATENATE Function

If you prefer using standard Excel formulas instead of symbols, the CONCATENATE function found inside the Formulas Tab ribbon achieves the exact same result.
The Formula Syntax:
=CONCATENATE(Text1, " ", Text2)
Step-by-Step Example:
Using our same spreadsheet setup where A2 holds the first name and B2 holds the last name:
1. Select cell C2 and enter this formula:
excel
=CONCATENATE(A2, " ", B2)
2. Press Enter.
3. Hover your mouse over the bottom-right corner of cell C2 until a small black cross icon appears (the Fill Handle). Double-click it to automatically copy the formula down your entire list.
💡 Pro Tip: Combining Text from 3 or More Cells
You aren’t limited to just two columns. You can string together as many data fields as you need by continually adding your delimiters. For example, if you are organizing legal files or specialized corporate indices across three columns (Company, Specialty, Type), your syntax will adjust dynamically:
excel
=A2 & " " & B2 & " " & C2
- Example Output:
Alpha Law Firm
❓ Frequently Asked Questions (FAQ)
What is the difference between CONCAT, CONCATENATE, and TEXTJOIN?
- CONCATENATE: The classic legacy function available in all versions of Excel. It requires you to select every single cell individually.
- CONCAT: Introduced in newer versions to replace CONCATENATE. It allows you to select an entire range of cells (e.g.,
=CONCAT(A2:D2)) but does not let you add spaces between them. - TEXTJOIN: The most powerful modern text tool. It allows you to specify a delimiter (like a space or a comma) just once, and it will automatically apply it across a massive range of cells while skipping blanks.
See Next Post: How to Use AutoSum in Excel (The Quickest Way to Total Data)
Author:SPiyush
Leave a Reply Cancel reply
STAY UPDATED
RECENT POSTS
File tab Backstage View buttons introduction Microsoft Excel
File tab Backstage View tools Microsoft Excel Complete Guide to...
Add numbers addition Microsoft Excel (adding in excel)
How to Add numbers (adding numeric) Microsoft Excel See Previous...
Using Format Painter button Microsoft Excel
Format Painter tool in Microsoft Excel See Previous Post: Add numbers...
Clipboard group Cut Copy and Paste Microsoft Excel
Cut Copy Paste Clipboard group MS Excel 2016 See Previous...
Description of Font group buttons tools Microsoft Excel
Overview of Font group buttons Excel 2016 See Previous Post: Clipboard...
Alignment group tools buttons Microsoft Excel
Commands of Alignment group Excel 2016 See Previous Post: Font group...
Number group buttons tools Formats Microsoft Excel
Number group tools commands Excel 2016 See Previous Post: Alignment Group...
Styles group buttons of Home tab Microsoft Excel
Styles group tools Microsoft Excel 2016 See Previous Post: Number group buttons commands...
Cells group tools description Home tab Microsoft Excel
Cells group buttons overview Microsoft Excel See Previous Post: Styles group...
Editing group buttons Home tab Microsoft Excel
Editing group commands Microsoft Excel See Previous Post: Cells group buttons...
Clipboard, Font, Alignment, Number, Styles, Cells, Editing groups Microsoft Excel
Home tab groups buttons Microsoft Excel 2016 See Previous Post: Editing...
Tables group buttons Insert Tab ribbon Microsoft Excel
Insert Tab tools of Tables group Excel 2016 See Previous...
Illustrations group buttons of Insert Tab Microsoft Excel
Illustrations group tools Microsoft Excel 2016 See Previous Post: Tables group buttons...
File tab Backstage View buttons introduction Microsoft Excel
File tab Backstage View tools Microsoft Excel Complete Guide to...
Add numbers addition Microsoft Excel (adding in excel)
How to Add numbers (adding numeric) Microsoft Excel See Previous...
Using Format Painter button Microsoft Excel
Format Painter tool in Microsoft Excel See Previous Post: Add numbers...
Clipboard group Cut Copy and Paste Microsoft Excel
Cut Copy Paste Clipboard group MS Excel 2016 See Previous...
Description of Font group buttons tools Microsoft Excel
Overview of Font group buttons Excel 2016 See Previous Post: Clipboard...
Alignment group tools buttons Microsoft Excel
Commands of Alignment group Excel 2016 See Previous Post: Font group...
Number group buttons tools Formats Microsoft Excel
Number group tools commands Excel 2016 See Previous Post: Alignment Group...
Styles group buttons of Home tab Microsoft Excel
Styles group tools Microsoft Excel 2016 See Previous Post: Number group buttons commands...
Cells group tools description Home tab Microsoft Excel
Cells group buttons overview Microsoft Excel See Previous Post: Styles group...
Editing group buttons Home tab Microsoft Excel
Editing group commands Microsoft Excel See Previous Post: Cells group buttons...
Clipboard, Font, Alignment, Number, Styles, Cells, Editing groups Microsoft Excel
Home tab groups buttons Microsoft Excel 2016 See Previous Post: Editing...
Tables group buttons Insert Tab ribbon Microsoft Excel
Insert Tab tools of Tables group Excel 2016 See Previous...
Illustrations group buttons of Insert Tab Microsoft Excel
Illustrations group tools Microsoft Excel 2016 See Previous Post: Tables group buttons...












