How to Use the CONCAT Function in Excel

Today, we’re going to delve into a useful function available in both Ms Excel and Google Sheets named CONCAT. The CONCAT function is designed to merge multiple strings into one continuous text string. This is particularly valuable for amalgamating text from various cells or incorporating specific text into existing cell values.

Basic Syntax

The standard formula structure for the CONCAT function is as follows:

=CONCAT(text1, [text2], ...)
  • text1: This is the initial string or cell reference you wish to concatenate.
  • text2 (optional): These are additional strings or cell references you may include in the concatenation.
  • The function can accept up to 253 text arguments with each argument allowing a maximum of 32,767 characters.

Examples

Example 1: Basic Usage

Consider two cells where cell A1 contains “Apple” and cell B1 contains “Banana”. To merge these two into one cell using CONCAT:

A B C
Apple Banana =CONCAT(A1, B1)

The formula =CONCAT(A1, B1) in cell C1 will produce “AppleBanana”.

Example 2: Adding Spaces

To insert a space between “Apple” and “Banana”, modify the formula as follows:

A B C
Apple Banana =CONCAT(A1, ” “, B1)

Now, the formula =CONCAT(A1, " ", B1) in cell C1 will yield “Apple Banana”.

Example 3: Combining Multiple Cells

If you need to merge content from more than two cells, simply add additional arguments to the CONCAT function:

A B C D E
Hello from Excel and Sheets

To combine these cells into cell F1, utilize the following formula:

=CONCAT(A1, " ", B1, " ", C1, " ", D1, " ", E1)

The resulting text in cell F1 will be “Hello from Excel and Sheets”.

The CONCAT function in Excel and Google Sheets proves to be a versatile tool for merging text from different cells or interspersing specific text between values. Remember, you can enhance the function’s utility by incorporating separators or constants as necessary.

More information: https://support.microsoft.com/en-us/office/concat-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2

Other functions
Returns an array of text values from any specified range
Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters
Converts a number to text, using the ß (baht) currency format
Returns the character specified by the code number
Removes all nonprintable characters from text
Returns a numeric code for the first character in a text string
Joins several text items into one text item
Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters
Converts a number to text, using the $ (dollar) currency format
Checks to see if two text values are identical
Finds one text value within another (case-sensitive)
Formats a number as text with a fixed number of decimals
Changes half-width (single-byte) characters within a string to full-width (double-byte) characters
Returns the leftmost characters from a text value
Returns the number of characters in a text string
Converts text to lowercase
Returns a specific number of characters from a text string starting at the position you specify
Converts text to number in a locale-independent manner
Extracts the phonetic (furigana) characters from a text string
Capitalizes the first letter in each word of a text value
Replaces characters within text
Repeats text a given number of times
Returns the rightmost characters from a text value
Finds one text value within another (not case-sensitive)
Substitutes new text for old text in a text string
Converts its arguments to text
Formats a number and converts it to text
Combines the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined If the delimiter is an empty text string, this function will effectively concatenate the ranges
Removes spaces from text
Returns the Unicode character that is references by the given numeric value
Returns the number (code point) that corresponds to the first character of the text
Converts text to uppercase
Converts a text argument to a number
Returns text from any specified value