macro to copy and paste range in next available column 'x' number of times

hustlethemacro

New Member
Joined
Dec 22, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Looking for a macro that will copy a range of data and paste it repeatedly into the next available columns 'x' number of times. The number of times will be specified on another worksheet, cell A1. In the example below, data was copied from range B1:C4 and pasted into D1:E4 and F1:G4, so 2 times (2 will be the value in cell A1 of the other worksheet). Thx

1671747081579.png
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
This macro will copy the selected area to the right X times:
VBA Code:
Option Explicit
Sub CopyToRight_X_Times()
    Dim x      As Long
    Dim Rng    As Range
    x = Sheets(3).Range("A1")   '<- adjust sheet name as needed
    Set Rng = Selection
    Rng.Copy Rng.Offset(, Rng.Columns.Count).Resize(Rng.Rows.Count, Rng.Columns.Count * x)
End Sub
 
Upvote 0
Solution
This macro will copy the selected area to the right X times:
VBA Code:
Option Explicit
Sub CopyToRight_X_Times()
    Dim x      As Long
    Dim Rng    As Range
    x = Sheets(3).Range("A1")   '<- adjust sheet name as needed
    Set Rng = Selection
    Rng.Copy Rng.Offset(, Rng.Columns.Count).Resize(Rng.Rows.Count, Rng.Columns.Count * x)
End Sub
This worked perfectly! Thanks!
 
Upvote 0
Thanks for the positive feedback(y), glad having been of some help.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,695
Members
448,979
Latest member
DET4492

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