The CONCATENATE function in Google Sheets is a powerful tool to append strings to one another. Whether you're combining first and last names, creating custom descriptions, or manipulating text data, the CONCATENATE function simplifies the task. Dive into our comprehensive guide to master its application.
Parameters
string1: The first string to concatenate.string2, ...: [Optional] Additional strings to concatenate.
Step-by-Step Tutorial
-
Using
CONCATENATEwith individual strings:- Example:
=CONCATENATE("Hello", " ", "World") - Result:
Hello World
- Example:
-
Using
CONCATENATEwith cell references:- Example: If
A1has the valueHelloandB1has the valueWorld, then=CONCATENATE(A1, " ", B1)will returnHello World.
- Example: If
Working with a Single Value, a List, and a Range
CONCATENATE accepts strings one at a time, as a comma-separated list, or as a range — mix and match freely.
- Single value:
=CONCATENATE(A1)— just returns the text inA1. - List of values:
=CONCATENATE(A1, A2, A3)— joins each cell in order with no separator. IfA1,A2, andA3areHello," ", andWorld, the result isHello World. - Range:
=CONCATENATE(A1:A3)— joins every cell in the range in order, with no separator. Using the same values inA1:A3, the result isHello World. - Mixed:
=CONCATENATE(A1, " ", B1:B3)— you can combine single cells, literal text, and ranges in one call.
Video Example
Use Cases and Scenarios
- Name Combination: Combine first and last names into a full name.
- Text Manipulation: Append prefixes or suffixes to existing text.
- Custom Descriptions: Create detailed descriptions using multiple strings.