+ Reply to Thread
Results 1 to 6 of 6

Create Duplicate Rows

Hybrid View

ignes Create Duplicate Rows 06-26-2013, 05:20 AM
Richard Buttrey Re: Create Duplicate Rows 06-26-2013, 05:40 AM
12@ Re: Create Duplicate Rows 12-24-2013, 11:20 AM
ignes Re: Create Duplicate Rows 06-26-2013, 05:47 AM
wenqq3 Re: Create Duplicate Rows 06-26-2013, 06:06 AM
ignes Re: Create Duplicate Rows 06-26-2013, 07:48 AM
  1. #1
    Registered User
    Join Date
    03-11-2013
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    6

    Create Duplicate Rows

    Hi,

    Everyone always want to get rid of duplicate rows.

    Is it possible to create duplicate rows of all the existing rows?

    Cheers.

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Create Duplicate Rows

    Yes,

    Just copy them and paste back somewhere else - either as values (converting formulas to actual values) or as is.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Registered User
    Join Date
    12-22-2013
    Location
    england
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Create Duplicate Rows

    Richard Buttrey is rightly said, just copy and paste at end of the record and sort will resolve but i have a purpose if we able to identify sheet2 column a1 field and find in sheet1 A:A, then create duplicate rows for such identified field then that will help me a lot.

  4. #4
    Registered User
    Join Date
    03-11-2013
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Create Duplicate Rows

    The thing is that it is a time value running sequentially at the moment.

    Ex:
    A
    B
    C
    D

    I want it to be:
    A
    A
    B
    B
    C
    C
    D
    D

    Cheers.

  5. #5
    Valued Forum Contributor wenqq3's Avatar
    Join Date
    04-01-2013
    Location
    Malaysia
    MS-Off Ver
    Excel 2003
    Posts
    868

    Re: Create Duplicate Rows

    Sub dupRow()
    Range("A1").Select
    
    Do
        ActiveCell.EntireRow.Copy
        ActiveCell.Offset(1, 0).Select
        Selection.Insert Shift:=xlDown
        ActiveCell.Offset(1, 0).Select
        
    Loop Until IsEmpty(ActiveCell.Value) = True
    
    End Sub
    Is this OKIE?
    -If the problem is solved, please mark your thread as Solved: Click Thread Tools above your first post, select "Mark your thread as Solved".

    -Always upload a workbook before start your question
    To attach a file, push the button with the paperclip (or scroll down to the Manage Attachments button), browse to the required file, and then push the Upload button.

    +++ If my answer(s) helped you, please add me reputation by click on * +++

  6. #6
    Registered User
    Join Date
    03-11-2013
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Create Duplicate Rows

    Thanks. Working!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1