How to Combine Two Columns in Google Sheets
Combining two columns in Google Sheets can help you create full names, merge data, or format lists neatly.
Whether you're working with first and last names or two separate data sets, merging columns is a valuable trick that saves time and reduces errors.
Google Sheets provides multiple easy ways to combine columns using formulas like
CONCAT
, TEXTJOIN
, and the ampersand (&
) operator. This tutorial will walk you through each method step by step so you can choose the one that fits your needs and start combining data effortlessly.
Step-by-Step: How to Combine Two Columns in Google Sheets
Step 1: Open Your Google Sheet
- Visit sheets.google.com.

- Open your desired spreadsheet or create a new one.
Step 2: Identify the Columns to Combine
- For example, Column A contains first names and Column B contains last names.

Step 3: Use the Ampersand (&
) Operator
- In a new column (say Column C), enter the following:

- This combines the first and last name with a space in between.
- Press
Enter
and drag the fill handle down to apply to other rows.
Step 4: Use the CONCATENATE
Function (Alternative)
- In Column C, type:
- Press
Enter
to get the combined result.
Step 5: Use the TEXTJOIN
Function (For More Flexibility)
- For multiple columns or optional delimiters, use:
- The
TRUE
argument ignores blank cells automatically.
Tired of spending hours cleaning data or writing complex formulas? Here’s a smarter solution: SheetAI.app
Whether you're managing sales reports, crafting marketing content, or analyzing feedback, working in spreadsheets can be time-consuming and repetitive. But what if you could automate these tasks and enhance your productivity directly within Google Sheets? That's exactly what SheetAI offers.

SheetAI is an AI-powered add-on for Google Sheets that brings advanced capabilities right into your spreadsheet. Simply describe what you want in plain English, and SheetAI will execute tasks such as generating formulas, cleaning data, summarizing text, and even creating images. (SheetAI Documentation - AI-Powered Functions for Google Sheets)
Here’s what you’ll love about SheetAI:
- Natural Language Commands: Use plain English to perform complex tasks.
- AI-Powered Functions: Leverage functions like
=SHEETAI()
and=SHEETAI_RANGE()
for dynamic content generation.
- Data Cleaning & Analysis: Automate data sanitization, summarization, and categorization.
- Content Generation: Create blog ideas, product descriptions, and personalized messages effortlessly.
- Image Creation: Generate images directly within your spreadsheet using
=SHEETAI_IMAGE()
.
- Formula Generation: Convert textual descriptions into accurate Google Sheets formulas.
- Integration with AI Models: Supports GPT-3, GPT-4, Claude, and Gemini for versatile AI capabilities.
Perfect for marketers, analysts, educators, and anyone looking to enhance their spreadsheet workflows.
Ready to revolutionize your Google Sheets experience? Install SheetAI now and start automating your tasks with AI!
Conclusion
Combining two columns in Google Sheets is fast and simple using formulas like
&
, CONCATENATE
, or TEXTJOIN
. These methods help you organize your data more efficiently, especially when preparing reports or lists.
Once you get familiar with them, you'll save time and streamline your workflow with ease.
FAQs cam come handy!
What if one of the cells is blank?
Use
TEXTJOIN(" ", TRUE, A2, B2)
to skip blank cells automatically.Can I combine more than two columns?
Yes,
TEXTJOIN
works great for combining multiple columns at once.How do I add a comma between combined values?
Use
=A2 & ", " & B2
or TEXTJOIN(", ", TRUE, A2, B2)
.Can I replace the combined formula with values?
Yes, copy the cells and use Paste special > Paste values only to replace formulas with static text.