6 Ways to Combine Multiple Rows in One Cell in Excel

There may be times when you need to combine multiple rows in one cell in Excel. For example, you may need to use an Excel formula or VBA for this purpose. Today, we’ll show you how to use Excel to combine multiple rows in one cell with examples.


📁 Download Excel File

To prepare this article, we used an Excel workbook, which is available for download. Additionally, you can edit and customize the data you enter while viewing the results.


Learn to Combine Multiple Rows in One Cell in Excel Using These 6 Easy Methods

Sometimes, you need to combine multiple rows in one cell in Excel for various reasons. We hope that the different steps we’ve given will make it easy for you to do the task. Here, I explain how to combine data from rows into one single cell in Excel without losing any data.

Method 1

1. Implementing TEXTJOIN Function

The TEXTJOIN Function can be used to merge text though it is only available in Excel 365. The TEXTJOIN function combines text from different rows with a specified delimiter. It’s simple and easy to understand. Here is a list of states Tom wanted to visit. We are going to combine them into one single cell.

multiple rows in one cell excel

⬇️⬇️ STEPS ⬇️⬇️

  • Let’s select cell E6.
  • Then we put the following formula.
=TEXTJOIN(“, “,TRUE,B6:B9)

  • Then we press Enter to find result.

 Implement TEXTJOIN Function to Combine Multiple Rows

📕 Read More: 6 Suitable Ways to Convert Multiple Rows to Single Row in Excel

Method 2

2. Use of Fill Justify Feature

Now we are going to combine text values only with Fill Justify. We should remember that we cannot do that for numerical values with Fill Justify.

Use the Fill Justify Command in Excel to Combine Rows into New Cell

⬇️⬇️ STEPS ⬇️⬇️

  • First, we make a new column ”Combined” adjacent to the first column and copy the previous column’s data to the next one.

  • Then we select the cells.

Selecting cells

  • Then we go to Home tab. From there we go to Editing group to select Justify from Fill.

  • The result will look like this.

  • Finally, we merged the cells for a better looking.

multiple rows in one cell excel

📕 Read More: 3 Ways to Convert Multiple Rows to Single Column in Excel

Method 3

3. Utilizing CONCATENATE and TRANSPOSE Functions

Now we can easily combine rows in one cell by using the CONCATENATE and TRANSPOSE functions together. Here the CONCATENATE function joins two or more strings and TRANSPOSE rotates data from rows to columns or columns to rows. Here we see a dataset of the first name, middle name, and last name of a famous inventor. We are going to combine the names in one cell.

Dataset of Combine Multiple Cells by Using the CONCATENATE and TRANSPOSE Functions

⬇️⬇️ STEPS ⬇️⬇️

  • First, we select cell C6.
  • Then we put the following formula.
=TRANSPOSE(B6:B8)
  • Then we press F9 and then Enter.

  • Now we modify the formula like below.

=CONCATENATE(“Alexander”,” Graham”,” Bell”)

  • Now we press Enter to find the result.

multiple rows in one cell excel using CONCATENATE and TRANSPOSE

  • We merged the cells for a better look.

3. Combine Multiple Cells by Using the CONCATENATE and TRANSPOSE Functions

📕 Read More: 3 Suitable Ways to Combine Rows in Excel with Same ID

Method 4

4. Using the Ampersand

We can use Ampersand to combine rows into one cell without using any formula. Here we are now going to combine the student in one cell.

⬇️⬇️ STEPS ⬇️⬇️

  • First we select cell C6 and type:
=B6

  • Then in the following cell, we insert.
=C6&”, “&B7

multiple rows in one cell excel using Ampersand

  • Now we drag down the formula to the last cell.

  • This is the final result.

Combine Rows into One Cell in Excel by Using the Ampersand

📕 Read More: 4 Quick Ways to Merge Rows with Same Value in Excel

Method 5

5. Applying CONCATENATE Function

Now we can easily combine rows in one single cell by only using the CONCATENATE functions. Here the CONCATENATE function joins two or more strings. Here we have a dataset of the first name, middle name, and last name of a famous inventor. We are now going to combine the names in one cell.

⬇️⬇️ STEPS ⬇️⬇️

  • First, we select cell E5.
  • Then we put the following formula.
=CONCATENATE(B6,” “,C6,” “,D6)

  • Now we press Enter then we drag down the formula.

Dragging down formula

  • This will be the final result.

Combine Multiple Cells by Only Using the CONCATENATE Functions

Method 6

6. Employing VBA

Now we will use VBA to combine multiple rows. Before talking about the method, first, we have enabled the Developer Tab on our Ribbons. You can follow the link to see the process of enabling the Developer Tab by clicking on it here. Let’s follow the steps below:

⬇️⬇️ STEPS ⬇️⬇️

  • Let’s press Alt+F11 to bring up the VBA You can also do this by going to the Developer tab and clicking on Visual Basic.

  • Then we choose Module from Insert from the menu. This will bring up the window for the VBA Module. Here is where we will put our code.

  • Now we type the code below.
Sub MultRowComb() 

Dim State As String 
State = "" 

For i = 6 To 9 State = State & " " & Cells(i, 2) 
Next 

Range("E6").Value = State 

End Sub
  • Now we save and run the code.

Combine multiple rows in one cell excel using VBA

  • Now we will see the outcome.

Inserting VBA to Combine Multiple Rows in One Cell in Excel


📄  Important Notes

🖊️  In Excel, the ribbon is used to access various commands. You can change a lot of things in the options dialogue window, like the ribbon, formulas, proofing, saving, and so on. So the appearance of worksheets on your device could be different from ours.

🖊️  A practice workbook is given so that you can practice yourself.

🖊️  All these exercises and tutorials are done on Microsoft Office 365. Some functions may be unavailable in previous versions.

🖊️  At the side of each Excel worksheet file, there is space where they can practice.


📝  Takeaways from This Article

📌  The reader will be able to use Excel to combine rows into one single cell with various methods.

📌  Readers can apply TEXTJOIN to combine rows in one cell.

📌  Readers can insert Justify Command to join rows in one cell.

📌  They can also combine multiple cells by using the CONCATENATE and TRANSPOSE functions.

📌  Viewers can also add multiple cells by using the Merge cell add-ins.

📌  The readers will get familiar with combining rows into one single cell in Excel by using the Ampersand.

📌  Finally, readers can combine multiple cells by using the different add-ins and VBA.


Conclusion

That concludes today’s session. These are the methods for using Excel to calculate the bacterial growth rate. We are hopeful that this article will be extremely beneficial to you. Don’t forget to leave your thoughts and questions in the comments section and explore our website, ExcelDen, the best Excel solutions provider.


Related Articles

(Visited 71 times, 1 visits today)
Tanzim

Tanzim

My name's Tanzim. My articles are meant to help you learn more about how Microsoft Excel works and how to use its different features. I enjoy gaming and hope that some of my knowledge will help me provide you with some interesting articles despite some tiresome technical terms.

We will be happy to hear your thoughts

Leave a reply

ExcelDen
Logo