Duplicate rows

kuba9406

New Member
Joined
Nov 30, 2012
Messages
1
Hi everybody,

This should be an easy for everyone that know <acronym title="visual basic for applications" style="border-width: 0px 0px 1px; border-bottom-style: dotted; border-bottom-color: rgb(0, 0, 0); cursor: help; color: rgb(51, 51, 51); background-color: rgb(250, 250, 250);">VBA</acronym>

I want to duplicate all my rows and mix them (20000 of them)

Like that
Alan
John
Daniel
David
Alex
Jacob
....
TO


Alan
John
Alan
John
Daniel
David
Daniel
David
Alex
Jacob
Alex
Jacob
....

How can I do this? I will be so so thankful !
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
There's probably a more eloquent way of doing this but try the following code, replace "cells(1, 1)" with wherever your data starts. Also this will probably need altering if your data has headings or if your data isn't just one column. To do that you could use something like Range("A2:A" & Cells.SpecialCells(xlCellTypeLastCell).Row) where A is your column. if your data isn't one column then make sure you change the Offset to the appropriate number. Lastly note there is no real need for the c variable as I could have recycled the rngSort but for the sake of clarity I didn't. Anyway, perhaps you can build on this, it should run in under 5 seconds.

Code:
Sub randomsort()

Dim rng As Range
Dim c As Range
Dim rngSort As Range

    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    
    Set rng = Cells(1, 1).CurrentRegion
    
    rng.Copy Cells(rng.Rows.Count + 1, rng.Column)
    
    Set rng = Cells(1, 1).CurrentRegion.Offset(, 1)
    
    For Each c In rng
        c.Value = Rnd()
    Next
    
    Set rngSort = Cells(1, 1).CurrentRegion
    
    rngSort.Sort Key1:=rng
    
    rng.ClearContents
    
    Set rngSort = Nothing
    Set rng = Nothing
    
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True


End Sub

Hope this helps

Simon
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,668
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top