Skip to main content
April 2, 2026Garfield Stinvil/4 min read

Joining Text in Excel: Using Concatenate and Ampersand

Master Excel Text Joining with CONCATENATE and Ampersand

Text Joining Methods Overview

CONCATENATE Function

Traditional Excel function for joining text from multiple cells. Works reliably across all Excel versions and supports multiple arguments.

CONCAT Function

New and improved version of CONCATENATE. Offers the same functionality with better performance in modern Excel versions.

Ampersand Method

Simple formula approach using the & operator. Ideal for combining just two cells or when you need a quick solution.

CONCATENATE vs Ampersand Method

FeatureCONCATENATEAmpersand
Syntax ComplexityMore complexSimple
Best Use CaseMultiple cellsTwo cells
Function TypeBuilt-in functionOperator
Learning CurveModerateEasy
Recommended: Use ampersand for simple two-cell combinations, CONCATENATE for multiple cells or complex joining operations.

CONCATENATE Function Steps

1

Start with Equal Sign

Type equals sign followed by CONCAT or CONCATENATE. Use Tab to auto-complete the function name.

2

Select First Cell

Click on the cell containing your first text value that you want to combine.

3

Add Comma Separator

Enter a comma to separate the first argument from the next one in the function.

4

Select Additional Cells

Continue selecting cells and adding commas between each cell reference as needed.

Adding Spaces Between Text

When joining text, Excel doesn't automatically add spaces. Think of the space as the 27th letter of the alphabet. Always enclose spaces in double quotation marks and separate them with commas in CONCATENATE or ampersands in the & method.

Ampersand Method Steps

1

Start with Equal Sign

Begin your formula with an equals sign, then select your first cell reference.

2

Add Ampersand

Type the ampersand symbol to separate your first cell from the next element.

3

Insert Space in Quotes

Add space character enclosed in double quotation marks, followed by another ampersand.

4

Select Second Cell

Click on the second cell to complete the combination and press Enter.

In Excel, you can imagine there are 26 letters in the alphabet. The 27th letter is actually the space.
Understanding how Excel treats spaces as characters is crucial for proper text joining. Always remember to explicitly include spaces using double quotation marks.

Text Joining Method Analysis

Pros
CONCATENATE supports unlimited arguments
Ampersand method is faster to type
Both methods preserve original cell data
Can combine text with custom separators
Works with AutoFill for batch operations
Cons
No automatic spacing between joined text
Requires manual quotation marks for separators
CONCATENATE syntax can be verbose
Need to remember comma vs ampersand syntax

Text Joining Best Practices

0/5

This lesson is a preview from our Excel Bootcamp Online (includes software) and Excel Expert Certification Online (includes software & exam). Enroll in a course for detailed lessons, live instructor support, and project-based training.

Text concatenation—the process of joining separate text strings into one unified cell—represents one of Excel's most fundamental yet powerful capabilities. Unlike text splitting, which breaks apart information, concatenation builds comprehensive data fields from individual components. Excel provides two primary methods for accomplishing this task, each with distinct advantages depending on your specific requirements.

The first approach utilizes the CONCATENATE function (or its modern successor, CONCAT), while the second employs the ampersand operator (&) within a streamlined formula structure. The CONCATENATE function offers explicit parameter handling and clear syntax readability, making it ideal for complex operations involving multiple text elements. The ampersand method, conversely, provides concise formula construction perfect for straightforward text joining tasks. Let's examine both approaches through practical application.

Consider a common business scenario: combining separate first and last name fields into a complete name designation. We'll demonstrate this using our sample data where "Diana" and "Stone" need merging into a unified full name cell. Beginning with the CONCATENATE approach, initiate the formula by typing the equals sign to signal Excel that a calculation follows.

Excel's intelligent autocomplete feature allows efficient function entry—simply type "CONCATE" and press Tab when the CONCATENATE option appears in the dropdown menu. This best practice minimizes keystrokes while reducing potential typing errors. Note that Excel now offers both CONCATENATE and CONCAT functions; CONCAT represents the updated version with enhanced capabilities, though both deliver identical results for basic concatenation operations.

The function structure requires systematic cell selection. Begin by clicking the cell containing "Diana"—conveniently located beneath our "First" column header for easy identification. The formula syntax demands comma separation between each argument, so add a comma before selecting the second cell containing "Stone" under the "Last" column header.

Upon pressing Enter, Excel successfully combines both text strings, displaying "DianaStone" in the target cell. However, this result reveals a critical formatting issue—the absence of proper spacing between the first and last names creates an unprofessional appearance that most business applications cannot accept.


Addressing this spacing challenge requires understanding how Excel processes text characters within functions. Text literals—any characters you want Excel to treat as static content rather than cell references or calculations—must be enclosed within double quotation marks. Think of the space character as the "27th letter of the alphabet" in Excel's context, requiring the same quotation mark treatment as any other text character.

To insert the necessary space, modify the formula by adding a comma after the first cell reference, then include " " (a space enclosed in double quotation marks), followed by another comma and the final cell reference. This structure—=CONCATENATE(C16," ",C17)—produces the properly formatted result "Diana Stone" with appropriate spacing between the name components.

The ampersand method offers a more streamlined approach, particularly effective when joining just two or three elements. This technique proves especially valuable for users who prefer concise formulas and frequent text concatenation tasks. Starting with the equals sign, select your first cell, then use the ampersand symbol (&) as the joining operator.

For our second example combining "Jesse" and "Bennett," the formula structure becomes =C18&" "&C19. This approach directly chains the first cell reference, a quoted space character, and the second cell reference using ampersand operators between each element. The result matches the CONCATENATE function output while requiring significantly fewer keystrokes.

Advanced concatenation scenarios often require more sophisticated separators than simple spaces. Consider a practical business case where regional and departmental data must be combined with professional formatting—specifically, regions and departments separated by a space-dash-space pattern for enhanced readability in reports and dashboards.


Using the ampersand method for this multi-character separator scenario, construct the formula as =C20&" - "&C21. The separator string " - " includes spaces before and after the dash, creating the desired "South - Sales" format. This technique allows unlimited separator customization—whether you need pipes (|), arrows (→), colons (:), or any other character combination your business requirements demand.

Once your concatenation formula produces the desired result, Excel's AutoFill functionality enables rapid application across entire data ranges. Position your cursor over the formula cell's bottom-right corner until the fill handle (small square) appears, then double-click to automatically apply the formula to all adjacent rows containing data. This feature transforms what could be hundreds of manual formula entries into a single, efficient operation—essential for processing large datasets typical in modern business environments.

Both concatenation methods deliver identical results, making your choice dependent on personal preference, formula complexity, and organizational coding standards. CONCATENATE functions excel in complex scenarios involving multiple text elements and provide clearer documentation for formula auditing. Ampersand operators shine in straightforward joining tasks where formula brevity and quick data processing take priority. Mastering both approaches ensures you can efficiently combine text data regardless of the specific requirements your projects demand.

Key Takeaways

1Excel offers two primary methods for joining text: CONCATENATE function and ampersand operator, both equally effective for combining cell contents.
2CONCATENATE and CONCAT functions work identically, with CONCAT being the newer version offering improved performance in modern Excel.
3Spaces must be explicitly added using double quotation marks since Excel doesn't automatically insert them between joined text elements.
4The ampersand method provides a simpler syntax and is ideal for combining two cells, while CONCATENATE excels at joining multiple cells.
5Custom separators like space-dash-space can be created by enclosing the entire separator string in double quotation marks.
6AutoFill functionality works with both joining methods, enabling efficient application of formulas to entire data ranges.
7Best practice involves typing minimal characters and using Tab key auto-completion when entering function names to reduce errors.
8Both methods preserve original cell data while creating new combined results, maintaining data integrity throughout the process.

RELATED ARTICLES