The CONCATENATE function in Excel is a powerful tool that allows users to merge multiple text strings into a single cohesive string. Especially useful for formatting data or combining information from various sources, this function streamlines the process of text manipulation in spreadsheets.
Syntax
CONCATENATE(text1, text2, ...)
- text1: The first text item to be joined. It can be a string, cell reference, or number.
- text2: The second text item to be joined. Additional arguments can follow to include more items.
Example #1
CONCATENATE("Hello, ", "World!")
This function call joins the two strings “Hello, ” and “World!”, resulting in: Hello, World!
Example #2
CONCATENATE(A1, " ", B1)
Here, if A1 contains “John” and B1 contains “Doe”, the result will be: John Doe
Example #3
CONCATENATE("Score: ", C2)
If C2 equals 95, then the outcome will be: Score: 95
Error handling
- VALUE!: This error occurs if one of the text arguments is invalid, such as a cell reference that doesn’t contain any text.
- NAME?: This error indicates that Excel does not recognize the function name, likely due to a typo.