Skip to main content

What does the & Sign Mean in Excel formula? (Examples)

In the realm of Excel, various symbols and operators play pivotal roles in formula creation and data manipulation. Among these, the ampersand (&) symbol stands out for its ability to concatenate, or link together, multiple strings of text. Understanding its function is key to mastering Excel's powerful data handling capabilities.


The Essence of & in Excel

 

At its core, the & operator in Excel is a concatenation tool. It's used to join two or more text strings into one continuous string. This operator becomes invaluable when you need to merge data from different cells or combine text and numbers for clearer data representation. Whether it's for simple tasks like merging names or for complex operations involving dynamic data structures, understanding and utilizing the & operator is a skill that can greatly enhance your proficiency with Excel. It's a small symbol with big possibilities, transforming the way you interact with data.


Basic Uses of “&” in Excel

 

The ampersand (&) sign is primarily utilized to merge two or more cells into a single entity. This is commonly applied to actions such as joining a person's first name with their last name, generating email addresses from names, amalgamating text and numerical values, and concatenating various cells to form a unified content.

Combining Names (Concatenate Two Cells)

Scenario: You have a list of first and last names in separate columns (column A and column B) and you want to combine them.

Formula: Select a blank cell (C2) and type one of below formulas to combine the first names and last names. Then press Enter key to get the first combination.

Combine first and last name without any separator

=A2&B2 

Combine first and last name with a space

=A2&" "&B2 
Combine without separator Combine with space as separator

Then drag auto fill handle down to get all full names.

Combine without separator Combine with space as separator
Note: If you want to combine names with other separator such as comma (,) change the space in the formula from " " to ", " (e.g. =A2&", "&B2).

Creating Email Addresses (Concatenate A Fixed Text with Cell Reference)

Scenario: From a list of employee names (A2:A6), you need to generate email addresses.

Formula: Select a blank cell (B2) and type below formula to combine the names and company email domain. Then press Enter key to get the first combination.

=A2&"@company.com"

Then drag auto fill handle down to get all email addresses.

Explanation of the formula:

In Excel, when you want to concatenate (combine) text with cell references or other text, you typically enclose the static text (text that doesn't change) in double quotes. This tells Excel that the text between the double quotes should be treated as a literal string and not as a formula or a reference to another cell.

So, in this formula, it's saying to take the value in cell A2 and append (concatenate) the text "@company.com" to it, creating a complete email address. The double quotes ensure that "@company.com" is treated as plain text rather than being interpreted as a part of the formula.


Concatenating Multiple Cells (Merging Three or More Cells)

Scenario: Creating a comma-separated list from multiple cells. (Combine each row cells from column A to column C.)

Formula: Select a blank cell (D2) and type below formula to combine cells A2, B2 and C2 with commas. Then press Enter key to get the first combination.

=A2&", "&B2&", "&C2

Then drag auto fill handle down to get all combinations.

Note:
In the above formula, we add a space behind a comma, if you do not need the space, just change ", " to ",".

Merge rows, columns, and cells in Excel without losing any data using Kutools' seamless combining feature. Simplify your data management today. Download now for a 30-day free trial and experience effortless data consolidation!

Advanced Uses of "&" in Excel

The ampersand (&) in Excel, while simple in its basic function of text concatenation, can be a powerful tool in more complex and dynamic scenarios. Here's a deeper look into its advanced applications, particularly in dynamic functions and conditional formatting.

Merging Text with Formula

Scenario: From a table of data, you want to get the total of each column and add a descriptive text before each text.

Formula: Select a blank cell (A7) and type below formula to total A2:A6 and add a descriptive text before the total. Then press Enter key to get the first combination.

="Total sales: "&SUM(A2:A6)

Then drag auto fill handle right to get totals for each column.


Dynamic Formulas (with IF Function)

Scenario: Suppose you're preparing a report and need to include a dynamic message that changes based on data values. For example, you have a sales target column (B) and an actual sales column (C). and you want to create a status message in column D (display "target achieved" if the sale is equal to or greater than target, display "target missed" if the sale is less than the target).

Formula: Select a blank cell (D2) and type below formula. Then press Enter key to get the first combination.

=IF(C2 >= B2, "Target Achieved: "&C2, "Target Missed: "&C2)

Then drag auto fill handle down to get status for each row.

Explanation of the formula:
  • IF(C2 >= B2: This part checks whether the value in cell C2 is greater than or equal to the value in cell B2.
  • "Target Achieved: " & C2: If the condition (C2 >= B2) is TRUE, it combines the text "Target Achieved: " with the value in cell C2. So, if the target is achieved, it will display "Target Achieved: " followed by the value in C2.
  • "Target Missed: " & C2: If the condition (C2 >= B2) is FALSE, meaning the target is not achieved, it will display "Target Missed: " followed by the value in C2.
In summary, this formula provides a message based on whether the target is achieved or missed, and it appends the value from C2 in both cases.

Conditional Formatting with Text Concatenation

Scenario: Highlighting cells with a specific status message that includes data from the cell itself. For example, a list of project names and their statuses in two columns (column A and B). You want to use conditional formatting to highlight projects with delayed status.

Apply Conditional Formatting: Select two column ranges (A2:B6), click Home > Conditional Formatting > New Rule.

Formula: Choose Use a formula to determine which cells to format, then copy below formula to the Format values where this formula is true textbox.

=ISNUMBER(SEARCH("Delayed", A2 & B2))

Format cells: Click Format button to open the Format Cells dialog, choose one color to highlight the row contains “Delayed” under Fill tab. Click OK > OK to close the dialogs.

Result:

Explanation of the formula:
  • SEARCH("Delayed", A2 & B2): The SEARCH function looks for the text "Delayed" within the combined content of cells A2 and B2. It returns the position (as a number) where "Delayed" is found if it exists, or an error if it doesn't.
  • ISNUMBER(): The ISNUMBER function checks if the result of the SEARCH function is a number (i.e., if "Delayed" was found). If it is a number, ISNUMBER returns TRUE; otherwise, it returns FALSE.
So, if "Delayed" is found anywhere within the combined text of cells A2 and B2, the related row is filled with red background color. If "Delayed" is not found, the related row maintains the current status.

Creating Complex Strings

Scenario: Building detailed descriptions or messages in a financial report. For example, column A contains products and column B to D containis the related sales for quarter 1. Now you want to create a descriptive text string for each total sales in quarter 1 like "the total sales of AA-1 for this quarter is $1,879.21".

Formula: Select a blank cell (E2) and type below formula. Then press Enter key to get the first combination.

="The total sales of " & A2 & " for this quarter is: $" & TEXT(SUM(B2:D2), "#,##0.00")

Then drag auto fill handle down to get all combinations.

Explanation of the formula:
  • "The total sales of ": This part of the formula is a text string that provides a descriptive beginning to the sentence.
  • A2: This references the value in cell A2, which is likely a product or category name.
  • " for this quarter is: $": This is another text string that adds context to the sentence, indicating that we are talking about sales for a specific quarter and specifying the currency as dollars.
  • SUM(B2:D2): This calculates the sum of values in cells B2 to D2, which presumably represent the sales figures for the specified product or category for the quarter.
  • TEXT(SUM(B2:D2), "#,##0.00"): This part formats the calculated sum as a currency value with two decimal places and includes commas for thousands separators, making it look like a monetary figure.

Effortlessly merge rows in Excel with Kutools' Advanced Combine Rows feature, streamlining your data consolidation tasks. Experience its power firsthand with a 30-day free trial and see how it transforms your spreadsheet management!

  •  

    The versatility of the & operator extends far beyond simple text merging. Its ability to integrate within dynamic formulas, enhance conditional formatting, and construct complex, informative strings, makes it an indispensable tool in advanced Excel data manipulation and presentation. These examples illustrate just a few of the ways & can be used to bring more sophistication and adaptability to your Excel tasks.

    For more game-changing Excel strategies that can elevate your data management, explore further here..


    The Best Office Productivity Tools

    Kutools for Excel - Helps You To Stand Out From Crowd

    🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
    Popular Features: Find, Highlight or Identify Duplicates  |  Delete Blank Rows  |  Combine Columns or Cells without Losing Data  |  Round without Formula ...
    Super VLookup: Multiple Criteria  |  Multiple Value  |  Across Multi-Sheets  |  Fuzzy Lookup...
    Adv. Drop-down List: Easy Drop Down List  |  Dependent Drop Down List  |  Multi-select Drop Down List...
    Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  Compare Columns to Select Same & Different Cells ...
    Featured Features: Grid Focus  |  Design View  |  Big Formula Bar  |  Workbook & Sheet Manager | Resource Library (Auto Text)  |  Date Picker  |  Combine Worksheets  |  Encrypt/Decrypt Cells  |  Send Emails by List  |  Super Filter  |  Special Filter (filter bold/italic/strikethrough...) ...
    Top 15 Toolsets12 Text Tools (Add Text, Remove Characters ...)  |  50+ Chart Types (Gantt Chart ...)  |  40+ Practical Formulas (Calculate age based on birthday ...)  |  19 Insertion Tools (Insert QR Code, Insert Picture from Path ...)  |  12 Conversion Tools (Numbers to Words, Currency Conversion ...)  |  7 Merge & Split Tools (Advanced Combine Rows, Split Excel Cells ...)  |  ... and more

    Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...

    Description


    Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)

    • One second to switch between dozens of open documents!
    • Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
    • Increases your productivity by 50% when viewing and editing multiple documents.
    • Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.