VBA to copy rows within the same sheet

shimon.amar

Board Regular
Joined
Nov 20, 2012
Messages
93
Dear fellows,

My boss gave me an assignment that I can't find a way to do it by macro.

assume I have database with lines -

[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Code Number[/TD]
[TD]Sub-code[/TD]
[TD]Date[/TD]
[TD]Amount[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]1234[/TD]
[TD][/TD]
[TD]12.12.12[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]Jack[/TD]
[TD]5678[/TD]
[TD][/TD]
[TD]12.12.13[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]Joe[/TD]
[TD]9876[/TD]
[TD][/TD]
[TD]11.12.12[/TD]
[TD]430[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

What I basically need to do is to duplicate each row 3 times and put the duplicated rows beneath the original rows.
For column "Sub-code" need to put numbers for each copied line (1, 2, 3).
For column "Amount" need to divide by 3 for each copied line.

Basically the data after macro should be like

[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Code Number[/TD]
[TD]Sub-code[/TD]
[TD]Date[/TD]
[TD]Amount[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]1234[/TD]
[TD][/TD]
[TD]12.12.12[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]1234[/TD]
[TD]1[/TD]
[TD]12.12.12[/TD]
[TD]33.33[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]1234[/TD]
[TD]2[/TD]
[TD]12.12.12[/TD]
[TD]33.33[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]1234[/TD]
[TD]3[/TD]
[TD]12.12.12[/TD]
[TD]33.33[/TD]
[/TR]
[TR]
[TD]Jack[/TD]
[TD]5678[/TD]
[TD][/TD]
[TD]12.12.13[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]Jack[/TD]
[TD]5678[/TD]
[TD]1[/TD]
[TD]12.12.13[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]Jack[/TD]
[TD]5678[/TD]
[TD]2[/TD]
[TD]12.12.13[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]Jack[/TD]
[TD]5678[/TD]
[TD]3[/TD]
[TD]12.12.13[/TD]
[TD]100[/TD]
[/TR]
</tbody>[/TABLE]

****** id="cke_pastebin" style="position: absolute; top: 382px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">[TABLE="width: 500"]
<tbody>[TR]
[TD]1234[/TD]
[/TR]
</tbody>[/TABLE]
</body>Thank in advance, very much appreciated
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
How about
Code:
Sub CopyRows3x()
   Dim i As Long
   
   For i = Range("A" & Rows.Count).End(xlUp).Row To 2 Step -1
      Rows(i + 1).Resize(3).Insert
      Rows(i).Resize(4).FillDown
      Range("C" & i + 1).Resize(3).Value = Application.Transpose(Array(1, 2, 3))
      Range("E" & i + 1).Resize(3).Value = Range("E" & i).Value / 3
   Next i
End Sub
 
Upvote 0
How about
Code:
Sub CopyRows3x()
   Dim i As Long
   
   For i = Range("A" & Rows.Count).End(xlUp).Row To 2 Step -1
      Rows(i + 1).Resize(3).Insert
      Rows(i).Resize(4).FillDown
      Range("C" & i + 1).Resize(3).Value = Application.Transpose(Array(1, 2, 3))
      Range("E" & i + 1).Resize(3).Value = Range("E" & i).Value / 3
   Next i
End Sub

Works great!! thank you very much!!
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,326
Members
452,635
Latest member
laura12345

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