Skip to main content

How to Combine First and Last Names in Excel & Google Sheets

The Introduction

Have you ever been handed a spreadsheet where customer or employee names are split into two separate columns—First Name in Column A and Last Name in Column B—but you need their full names together for a formal report, email blast, or staff list?

Manually retyping hundreds of full names is a massive waste of time and an easy way to introduce typos. Instead, you can use a basic formula trick to merge columns instantly while keeping your spacing perfectly clean.

Today, I’ll show you two incredibly simple ways to join split text using the ampersand (&) operator and the CONCATENATE function.

 


 

Step 1: Set Up Your Split Columns

Let's build a clean, placeholder-based framework to test our formula. Set up a simple three-column grid:

  • A1: First Name (e.g., abc, xyz, pqr)

  • B1: Last Name (e.g., xyz, abc, def)

  • C1: Full Name (This is where our formula lives)

Step 2: The Easy Method — Using the Ampersand (&)

The fastest way to join text from two cells is by using the & symbol, which acts like digital glue in spreadsheets.

If you simply type =A2&B2 in cell C2, your text will smash together without a space (turning abc and xyz into abcxyz). To fix this, you need to manually add a space enclosed in quotation marks (" ") between the two cells.

The Correct Formula: =A2 & " " & B2

Press Enter, and the spreadsheet will instantly display your combined text with a perfect space in the middle.

Step 3: The Traditional Method — Using CONCATENATE

If you prefer using named functions rather than symbols, the CONCATENATE function does the exact same job.

Click on cell C2 and enter the formula like this, making sure to include the comma-separated space in the middle:

=CONCATENATE(A2, " ", B2)

Both methods achieve identical results, so you can choose whichever style feels more natural to your workflow.

Step 4: Flash Fill & Copying Down

Once your formula is typed into cell C2, you don't need to retype it for the rest of your sheet:

  1. Hover your mouse over the bottom-right corner of cell C2 until the cursor turns into a black plus sign (+).

  2. Double-click, or click and drag the corner down to apply the formula to all rows instantly.

Pro-Tip: If you need to delete the original separate columns later without breaking your new combined column, highlight your new Full Name column, press Copy, right-click, and choose Paste Special > Values Only. This locks the text in place and removes the underlying formulas safely!

Conclusion

Merging text columns is a fundamental spreadsheet hack that saves hours of administrative data entry. Whether you use the ampersand shortcut or the traditional concatenate function, you can organize messy lists in seconds.

Try joining your split columns this week! If your text is merging without spaces or returning a formula error, drop a comment below and we will fix your syntax together.


Comments

Popular posts from this blog

Beyond SUMIFS: Master Advanced Data Crunching with SUMPRODUCT

    The Introduction As your data tracking becomes more complex, your calculation needs grow past basic totals. You might find yourself writing massive, clunky SUMIFS or COUNTIFS strings that stretch across your formula bar, becoming incredibly difficult to read, scale, or debug. If you want to perform advanced calculations across intersecting rows and columns—like calculating weighted averages or multiplying matching conditions together across entirely separate columns—you need an array-processing powerhouse. In Google Sheets, that tool is the SUMPRODUCT function. By treating your data columns as mathematical matrices, it evaluates multiple criteria simultaneously, performs row-by-row multiplication, and sums up the final results in one elegant step. Let's look at how to leverage it for your data architecture. Step 1: The Core Mechanics of Array Multiplication At its most basic level, SUMPRODUCT takes two or more arrays of equal size, multiplies their corresponding items ...

How to Build an Automated Employee Attendance Tracker in Google Sheets

 The Introduction Tracking employee attendance, sick leaves, and casual leaves manually can quickly turn into an administrative nightmare. If you are still typing "P" for Present or "A" for Absent into a massive grid and counting them by hand at the end of the month, you are losing valuable time. You don't need expensive HR software to streamline this. Today, I will show you how to build a visual Attendance Tracker using interactive checkboxes in Google Sheets. With this setup, ticking a box instantly updates your team's total present days, total leaves, and attendance percentages automatically! Step 1: Set Up Your Attendance Grid First, let's build the framework for the month. Open a new Google Sheet and title it Monthly Attendance Tracker . In row 1, set up your basic information headers: A1: Employee Name B1: Department Starting from column C1 , type the dates of the month horizontally (e.g., 1-May , 2-May , 3-May , and so on, all the way across). ...

5 Daily Tasks in Excel You Can Automate in Under 5 Minutes

  The Introduction Are you spending your mornings copying, pasting, and fixing data? Most people treat Excel like a digital piece of paper, but it’s actually a powerful assistant waiting for instructions. In this guide, I’ll show you 5 simple ways to automate your daily "busy work" so you can finish your tasks faster and get back to what matters. No coding required!   1. The "Magic" Data Entry (Flash Fill) The Problem: You have a list of full names (e.g., "Rajesh Kumar") and you need to split them into First Name and Last Name. The Automation: Type the first name in the cell next to it manually. Type the second name in the cell below it. Press Ctrl + E on your keyboard. Result: Excel recognizes the pattern and fills the entire column for you instantly. 2. Highlighting Deadlines Automatically The Problem: You have a list of invoices or tasks and keep missing the due dates. The Automation: Select your date column. Go to Conditional Formatting > Highl...