zach9208

Board Regular
Joined
Dec 15, 2015
Messages
117
I am trying to write a macro to copy each line from columns A to E and paste each row 3 times on another tab. I need this macro to loop through until it hits a blank row. Here is code that I recorded, but I do not know how to make this into a loop. I also have a piece of code that grabs F to I and then transposes this piece when pasted to the UIL tab.

Code:
Sub MakeDuplicatesofEachRow()

    Sheets("Data").Select
    Range("A2:E2").Select
    Selection.Copy
    
    Sheets("UIL").Select
    Range("A2").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("A3").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("A4").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("A5").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    
    Sheets("Data").Select
    Range("F2:I2").Select
    Application.CutCopyMode = False
    Selection.Copy
    
    Sheets("UIL").Select
    Range("F2").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=True
End Sub

Lastly, it would be great if I could build in this code to copy the range g2:G5 and paste this in the UIL tab until I hit a blank row based on column A.

Code:
Sub Macro5()

    Sheets("UIL").Select
    Range("G2:G5").Select
    Application.CutCopyMode = False
    Selection.Copy
    Range("G6").Select
    ActiveSheet.Paste
    Application.CutCopyMode = False
    
End Sub
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi
This does the first part.
Code:
Sub CopyRngx4()
' Zach9208

    Dim DSht As Worksheet
    Dim Rng As Range
    
Application.ScreenUpdating = False

    Set DSht = Sheets("UIL")
    
    With Sheets("Data")
        For Each Rng In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            Rng.Resize(, 5).Copy DSht.Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(4, 5)
            Rng.Offset(, 5).Resize(, 4).Copy
            DSht.Range("F" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues, Transpose:=True
        Next Rng
    End With

Application.CutCopyMode = False

End Sub
As for the second part , what do you have in G2:G5?
 
Upvote 0
The second part G2:G5 is a static range that will always be on the UIL tab. It is 4 rows of the classifcation of the date. Since the lines from the Data tab are always in this order, I want a macro to drag these four classification in the same order until it hits the end of the data on the UIL tab.



Hi
This does the first part.
Code:
Sub CopyRngx4()
' Zach9208

    Dim DSht As Worksheet
    Dim Rng As Range
    
Application.ScreenUpdating = False

    Set DSht = Sheets("UIL")
    
    With Sheets("Data")
        For Each Rng In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            Rng.Resize(, 5).Copy DSht.Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(4, 5)
            Rng.Offset(, 5).Resize(, 4).Copy
            DSht.Range("F" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues, Transpose:=True
        Next Rng
    End With

Application.CutCopyMode = False

End Sub
As for the second part , what do you have in G2:G5?
 
Upvote 0
I should have included this in my first reply. Your macro code worked marvelously!

Hi
This does the first part.
Code:
Sub CopyRngx4()
' Zach9208

    Dim DSht As Worksheet
    Dim Rng As Range
    
Application.ScreenUpdating = False

    Set DSht = Sheets("UIL")
    
    With Sheets("Data")
        For Each Rng In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            Rng.Resize(, 5).Copy DSht.Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(4, 5)
            Rng.Offset(, 5).Resize(, 4).Copy
            DSht.Range("F" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues, Transpose:=True
        Next Rng
    End With

Application.CutCopyMode = False

End Sub
 
Upvote 0
Try
Code:
Sub CopyRngx4()
' Zach9208

    Dim DSht As Worksheet
    Dim Rng As Range
    Dim Fll As Long
    
Application.ScreenUpdating = False

    Set DSht = Sheets("UIL")
    
    With Sheets("Data")
        For Each Rng In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            Rng.Resize(, 5).Copy DSht.Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(4, 5)
            Rng.Offset(, 5).Resize(, 4).Copy
            DSht.Range("F" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues, Transpose:=True
        Next Rng
    End With
    With DSht
        Fll = .Range("A" & Rows.Count).End(xlUp).Row - 5
        .Range("G2:G5").Copy .Range("G6").Resize(Fll)
    End With

Application.CutCopyMode = False

End Sub
 
Upvote 0
Worked exactly the way I needed. Thank you so much, Fluff!!!!

Try
Code:
Sub CopyRngx4()
' Zach9208

    Dim DSht As Worksheet
    Dim Rng As Range
    Dim Fll As Long
    
Application.ScreenUpdating = False

    Set DSht = Sheets("UIL")
    
    With Sheets("Data")
        For Each Rng In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            Rng.Resize(, 5).Copy DSht.Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(4, 5)
            Rng.Offset(, 5).Resize(, 4).Copy
            DSht.Range("F" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues, Transpose:=True
        Next Rng
    End With
    With DSht
        Fll = .Range("A" & Rows.Count).End(xlUp).Row - 5
        .Range("G2:G5").Copy .Range("G6").Resize(Fll)
    End With

Application.CutCopyMode = False

End Sub
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,755
Members
448,989
Latest member
mariah3

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