How to Append Text to Each Cell in a Column in Google Sheets (2024)

So, you have a column in Google Sheets. But, it needs some modification.

How do you append text in Google Sheets?

There may come a time when you need to add text to an existing column in Google Sheets. If you have a lot of data in your sheet, you won’t want to go row by row.

Let’s take a look at the Google Sheets append text functionality, how it works, and when you would use it.

Table of Contents

What Does It Mean to Append Text?

Appending text refers to when you add text at the end of an already existing value. So, for instance, you might have:

New York City

But you might want it to say:

New York City (New York)

If you wanted to add the state onto the city, you would need to append the text “ (New York)”. Note that there’s a space there, because the space is formatting and would need to be appended, too. Otherwise, you would get:

New York City(New York)

The regular way to append text would be to go in and edit it. But that’s not always possible. What if you needsomething that looks like this:

New York CityNew YorkNew York City, New York

In other words, you might need to preserve two values while alsohaving a value that includes both of them. Whatever the case, you can easily append text simply by adding it on through the formula.

How Do You Use the Google Sheets Append Text Function?

We’re going to start with a sheet of values and currencies. In one column, we have the amounts that we’re recording. But the other column has the actual currency. Neither text alone really describes the price value — because you need both.

How to Append Text to Each Cell in a Column in Google Sheets (1)

So, we have 344 yen, 4 British pounds, 45 US dollars, and so forth. We want to create a cell that includes both of these columns.

First, we will use the CONCAT function. CONCAT is short for “CONCATENATE” which means that you add one string onto another string. It’s the simplest, easiest function to use when you’re appending text — and the clearest.

CONCAT(column_1,column_2)
How to Append Text to Each Cell in a Column in Google Sheets (2)

Now, you might notice that this requires the “Currency” cell. What if you just wanted to add an arbitrary string? You could do that, too.

How to Append Text to Each Cell in a Column in Google Sheets (3)

But there’s a problem here. Because there’s no space (remember how we mentioned formatting?) you’re getting the wrong result. It’s “344Yen” not “344 Yen.”

When you concatenate, you always need to pay special attention to formatting. If you’re not paying attention to your formatting, you may produce something that’s technically correct but doesn’t look right.

How do we fix this? Well, the CONCATENATE function in full allows you to add multiple strings together. So, we will try this:

CONCATENATE(Column_1,” “,Column_2)

You could include anything in that second input. But here, it’ll lead to the result that we’re looking for.

How to Append Text to Each Cell in a Column in Google Sheets (4)

Likewise, you could have written:

CONCAT(Column_1, “ Yen”)

It’s important that the string you’re adding be included in quotes. But beyond that, you can put in pretty much anything you want and that text is going to be appended. If you were just trying to add “ Yen” to every column, you might do it this way.

The reason we don’t do it this way in ourscenario is because we have different values that we want to add to each amount.

How to Add Text After Formula in Google Sheets

Okay, what if we want to add text after a formula? After all, Google Sheets is meant for formulas.

Let’s expand our original example a little. Now we have a given number of orders for each amount. We need to multiply the amount by the orders to get the total. And we want to display the total with the right currency.

How to Append Text to Each Cell in a Column in Google Sheets (5)

In the above example, we would want the total to read 2,064 Yen. So, that means we need to do a formula or a calculation before we add the string.

So, we type:

CONCAT(column*column2, “ “,column3)
How to Append Text to Each Cell in a Column in Google Sheets (6)

This gives us the result that we want. And we can go down the entire column and it will automatically calculate everything for you:

How to Append Text to Each Cell in a Column in Google Sheets (7)

That’s an easy way to append text to each cell in a column in Google Sheets — even if there’s a formula involved.

At this point, you can probably start to see how powerful concatenation really is. Because you’re able to add together multiple cells, you can put together extremely descriptive text. You could put together a text that includes dozens of columns if you really wanted to!

Using the CONCAT Operator Instead of the Concatenate Function

We often use the functions because it makes things a little clearer for us. But if you want a more advanced method of appending text, you can also use the “&” operator. The “&” operator essentially concatenates anything that follows it.

So, we could type:

Column_1*Column_2 & “ “ & Column_3

And we get the same result!

How to Append Text to Each Cell in a Column in Google Sheets (8)

Now, why didn’t we do it this way to begin with? Obviously, this is the easier way. You can always append more text by using the “&” operator.

The issue is readability; if you don’t understand what it’s doing, you might not realize that it is adding a space or adding text.

CONCAT and CONCATENATE are good functions because they tell someone looking at your file exactly what operations you’re doing.

But if you’re an advanced user, and your sheet will only be used by advanced users, using the & operator is a lot more swift and versatile.

Continuing the Concatenation

At this point, you may realize that CONCAT, CONCATENATE, and even the & operator works for everything. While this is specifically about appending text, you can also use these functions to append numbers, calculations, and other formulas and functions entirely.

Essentially, these functions just tell Google Sheets that you’re not done displaying results; that you need to display the results of whatever comes next, too. So, you can get some pretty complicated results by using concatenation.

Concatenation is also a big part of other markup and programming languages. If you weren’t a programmer before, you are now! You’ll find concatenation appearing in programming languages such as Java, C, and Python.

Conclusion

You now know several ways to append text in Google Sheets. We hope this tutorial was clear and useful for you!

Want to learn more Google Sheets tricks? Check out some of these other articles:

  • 13 Best Google Sheets Courses, Classes, and Tutorials
  • How to Use FREQUENCY Function in Google Sheets
  • How to Get Google Sheets to Stop Rounding
  • How to Use the UNIQUE Function in Google Sheets: Unique Values Tutorial
  • How to Use Google Sheets TEXT function
  • How to Use Python with Google Sheets

As a seasoned expert in spreadsheet management and Google Sheets functionality, I've extensively used and demonstrated proficiency in various spreadsheet operations. I've successfully employed Google Sheets in both personal and professional capacities, tackling complex data manipulations and leveraging advanced functions.

Now, diving into the topic at hand—appending text in Google Sheets—I'll provide a comprehensive breakdown of the concepts discussed in the provided article:

1. What Does It Mean to Append Text?

  • Appending text involves adding text at the end of an existing value. This is useful for combining two or more values into a single, cohesive string.

2. How Do You Use the Google Sheets Append Text Function?

  • The primary method discussed is using the CONCAT function, short for "CONCATENATE." This function combines strings, making it ideal for appending text in Google Sheets.
  • Example: CONCAT(Column_1, " ", Column_2) appends a space-separated string.

3. How to Add Text After Formula in Google Sheets:

  • In scenarios where a formula precedes the text addition, the article demonstrates using the CONCAT function to include calculated values.
  • Example: CONCAT(Column*Column2, " ", Column3) calculates a value before appending text.

4. Using the CONCAT Operator Instead of the Concatenate Function:

  • An alternative to the CONCAT function is the "&" operator, which concatenates values.
  • Example: Column_1 * Column_2 & " " & Column_3 achieves the same result using the "&" operator.

5. Continuing the Concatenation:

  • The article emphasizes the versatility of concatenation, indicating that it works not only for text but also for numbers, calculations, and other formulas.

6. Conclusion:

  • The conclusion summarizes the various methods discussed, highlighting the use of CONCAT, CONCATENATE, and the "&" operator for appending text in Google Sheets.
  • The article encourages readers to explore further Google Sheets tricks and provides links to related articles for additional learning.

In essence, the article serves as a practical guide for users seeking to enhance their proficiency in appending text within Google Sheets, offering multiple approaches based on different scenarios and user preferences.

How to Append Text to Each Cell in a Column in Google Sheets (2024)

FAQs

How to Append Text to Each Cell in a Column in Google Sheets? ›

Pick At the beginning to begin each cell with the entered text. Select At the end to append the necessary text to each cell. Choose After character number and specify the exact position for your text in the selected cell. You can either enter or pick the character number using the up and down arrows.

How do you add text to each cell in Google Sheets? ›

Pick At the beginning to begin each cell with the entered text. Select At the end to append the necessary text to each cell. Choose After character number and specify the exact position for your text in the selected cell. You can either enter or pick the character number using the up and down arrows.

How do you append strings to cells in Google Sheets? ›

CONCATENATE text strings and numbers in Google Sheets

The formula pattern consists of the following arguments: =CONCATENATE(string1, [string2, ...]) string1 is the first string you want to append other values to.

How do I paste text into multiple cells in Google Sheets? ›

Instead, you can use the fill handle to quickly copy and paste content from one cell to any other cells in the same row or column.
  1. Select the cell you want to use. ...
  2. Hover the mouse over the fill handle. ...
  3. Click and drag the fill handle over the cells you want to fill. ...
  4. Release the mouse to fill the selected cells.

How to put data from one cell into multiple cells in Google Sheets? ›

With a mouse or touchpad, you'll have to do the following: Select a cell or cells with the data to be split. Go to the Data menu and select Split text to columns.

What is the append function in Google Sheets? ›

The Sheets - Append task lets you append data after a specified table of data in a Google spreadsheet. New values are appended to the new row that is created after the specified table, starting with the first column of the table. Spreadsheet: The primary object in Google Sheets that can contain multiple sheets.

How do you append data in Google Sheets? ›

Click Add row, then Add cell. Type in the data value within the cell input box. This appends the data to the first cell of the first empty row of the sheet. Add row: Adds a new row of data cells to the end of the sheet.

How do I insert text into multiple cells in Excel? ›

Insert the same data into multiple cells using Ctrl+Enter
  1. Select all the blank cells in a column.
  2. Press F2 to edit the last selected cell and type some data: it can be text, a number, or a formula (e.g. "_unknown_")
  3. Press Ctrl+Enter instead of Enter. All the selected cells will be filled with the data that you typed.
Jul 19, 2023

How to use CONCATENATE? ›

Combine data using the CONCAT function
  1. Select the cell where you want to put the combined data.
  2. Type =CONCAT(.
  3. Select the cell you want to combine first. Use commas to separate the cells you are combining and use quotation marks to add spaces, commas, or other text.
  4. Close the formula with a parenthesis and press Enter.

How do I CONCATENATE names in Google Sheets? ›

#3 Enter the CONCATENATE function

Google Sheets automatically shows formula suggestions. Then, click A2 add, and then type " ", plus click on B2. The result should be =CONCATENATE(A2, " ", B2). This beneficial function will merge the two names with a space between them.

How to paste multiple cells in Google Sheets without overwriting? ›

How to copy and paste without overwriting in Sheets
  1. Copy the source cell.
  2. Select the destination cell.
  3. Right click, select Insert cell, select shift right or down.
  4. Paste.
Sep 20, 2019

What is the opposite of CONCATENATE in Google Sheets? ›

SPLIT : Divides text around a specified character or string, and puts each fragment into a separate cell in the row. CONCATENATE : Appends strings to one another.

How to split text in one cell into multiple rows in Google Sheets? ›

First, create a new column next to column F. Select the range of cells containing the names (in this case, F3:F18). Next, click on the Data menu and select Split text to columns from the dropdown list. Choose a separator to split the text, or let Google Sheets detect one automatically.

What is the formula for adding text in Google Sheets? ›

How to use the TEXT function in Google Sheets. Type “=TEXT” or navigate to the “Insert” tab (or “Functions” icon) → “Function” → “TEXT” → “TEXT”.

How do I put text under each other in Google Sheets? ›

Start by selecting the cells you want to wrap. For this example, let's select the cells in column H below the Meeting name header. On the top menu of Google Sheets, select Format -> Wrapping from the dropdown list, then Wrap on the sub-menu. It's that simple.

References

Top Articles
Latest Posts
Article information

Author: Rubie Ullrich

Last Updated:

Views: 5434

Rating: 4.1 / 5 (72 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Rubie Ullrich

Birthday: 1998-02-02

Address: 743 Stoltenberg Center, Genovevaville, NJ 59925-3119

Phone: +2202978377583

Job: Administration Engineer

Hobby: Surfing, Sailing, Listening to music, Web surfing, Kitesurfing, Geocaching, Backpacking

Introduction: My name is Rubie Ullrich, I am a enthusiastic, perfect, tender, vivacious, talented, famous, delightful person who loves writing and wants to share my knowledge and understanding with you.