How to Duplicate Rows Dynamically Based on Cell Values in Excel

Published on

This tutorial explains how to duplicate rows based on cell values in a column without relying on VBA in Excel. All you need is a version of Excel that supports dynamic arrays.

For this purpose, we will use functions such as ROWS, SEQUENCE, REPT, TEXTJOIN, TEXTSPLIT, TOCOL, and CHOOSEROWS.

If your version of Excel supports these functions, you can proceed without any further ado. The formula does not use LAMBDA functions, so the performance of the formula won’t be affected.

Core Idea Behind Duplicating Rows

The core concept of duplicating rows based on cell content is as follows:

We will use a single row to explain how to duplicate rows based on quantity.

TitleAuthorQty
To Kill a MockingbirdHarper Lee3

In this data, Title contains the book title, Author contains the author name, and Qty specifies the quantity (in this case, 3).

The goal is to repeat the book title and author name based on the quantity (i.e., 3) as follows:

TitleAuthor
To Kill a MockingbirdHarper Lee
To Kill a MockingbirdHarper Lee
To Kill a MockingbirdHarper Lee

Here’s how we’ll achieve this:

  1. We assign a serial number to the row. We number it #1 since it’s the first row (record) in the table.
  2. Next, we repeat this serial number 3 times, corresponding to the quantity.
  3. These numbers can then be used in the CHOOSEROWS function to return the first row 3 times, like so: =CHOOSEROWS(row, {1, 1, 1}) .

However, when there are multiple rows, we need to generate various serial numbers dynamically to use with CHOOSEROWS. We will cover how to generate these serial numbers in the step-by-step guide below. Before that, let’s dive into the formula for dynamically duplicating rows based on cell content in Excel.

Dynamic Array Formula for Duplicating Rows Based on Cell Values in Excel

You can use the following formula to repeat rows based on cell contents in Excel:

=CHOOSEROWS(
   A2:B5, 
   TOCOL(
      TEXTSPLIT(
         TEXTJOIN("", TRUE, 
            REPT(SEQUENCE(ROWS(C2:C5))&"|", C2:C5)
         ), "|"
      )*1, 3)
   )

In this formula, replace A2:B5 with your range of rows to be repeated, and C2:C5 with the cell range that determines how many times each row should be repeated.

The formula in cell E2 produces the following output:

Duplicating Rows Based on Cell Values in a Column in Excel

Formula Explanation

The formula above follows a straightforward logic, which we have already discussed under the subtitle “Core Idea Behind Duplicating Rows”.

Below is a step-by-step explanation to help you use the formula correctly and learn some new techniques in Excel.

Step 1: Prepare the Sample Data for Duplicating Rows Based on Cell Content

When duplicating data, ensure that the column determining the number of rows to duplicate is the last one. If it’s in the middle, additional steps may be required to exclude it from the new table generated by the formula.

Here is the correct format:

Understanding Repeat Range and Repeat By Range for Duplicating Rows
  • Repeat range: A2:B5
  • Repeat by range: C2:C5

Step 2: Assign Serial Numbers

To assign serial numbers to the duplicate row range, use the following formula:

=SEQUENCE(ROWS(C2:C5))
Steps 2 to 5 Illustrated: Assigning Serial Numbers, Repeating Serial Numbers, Joining Repeated Serial Numbers, and Splitting Serial Numbers

Step 3: Repeat Serial Numbers

The following formula repeats the serial numbers based on the values in C2:C5 and inserts a “|” delimiter between them:

=REPT(SEQUENCE(ROWS(C2:C5)) & "|", C2:C5)

Step 4: Join the Repeated Serial Numbers

Use the TEXTJOIN function in Excel to join the repeated serial numbers as follows:

=TEXTJOIN("", TRUE, REPT(SEQUENCE(ROWS(C2:C5)) & "|", C2:C5))

Step 5: Split and Arrange Serial Numbers into a Column

This step is crucial for duplicating rows based on cell content in Excel.

=TOCOL(TEXTSPLIT(TEXTJOIN("", TRUE, REPT(SEQUENCE(ROWS(C2:C5)) & "|", C2:C5)), "|") * 1, 3)

The TEXTSPLIT function splits the joined serial numbers based on the pipe delimiters. Since the result is text, we multiply by 1 to convert them back to numeric values. The TOCOL function arranges the values into a column and removes any error values.

Step 6: Use CHOOSEROWS to Duplicate Rows Based on Cell Content

The formula that duplicates rows based on cell content uses the CHOOSEROWS function.

It follows this syntax:

CHOOSEROWS(array, [row_num1, …])

Where:

  • array is the range to duplicate (e.g., A2:B5)
  • row_num1, … is the output returned by the formula from Step 5.

This is the dynamic array formula for duplicating rows based on cell content in Excel.

Resources

Below are some related resources specific to duplicating rows. While they may not work directly in Excel, they will be helpful when transitioning from Excel to Google Sheets.

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Fix Fractional Percentage Formatting Issues in Google Sheets

Applying data validation is the only effective solution to resolve issues related to fractional...

Lookup the Smallest Value in a 2D Array in Google Sheets

We can use a combination of BYROW and SMALL with FILTER or XLOOKUP to...

Unique List by Section in Excel

If you have a list in a column separated by categories, you might want...

REDUCE Function in Excel: Transform Arrays with Ease

The REDUCE function in Excel uses an accumulator to store intermediate values during the...

More like this

Unique List by Section in Excel

If you have a list in a column separated by categories, you might want...

REDUCE Function in Excel: Transform Arrays with Ease

The REDUCE function in Excel uses an accumulator to store intermediate values during the...

Insert a Blank Row After Each Category Change in Excel

Adding a blank row after each category change in Excel is quite simple. You...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.