Repetative Code Advice

colmmc

Board Regular
Joined
Jan 8, 2004
Messages
59
Hi all,

I've been using Excel for decades but I've only just started using VBA.

I currently have a task that entails copying 600 cells from several sheets in one workbook to a table in another. And then repeating the process on 300 other workbooks

The code is quite simple

Sheets("Section 4a").Activate
Range("F8").Copy
Workbooks("master_table.xlsx").Activate
ActiveSheet.Paste
ActiveCell.Offset(0,1).Activate

It all works fine and the only thing that needs to change is the source sheet (Section 4 in the above example) and the copy range (F8) each time.

I'm wondering if two arrays would be easier/quicker? I've not used arrays before.


Any advice?
 
Last edited:

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
For looping, try this:

Code:
Dim ws As Worksheet 

For Each ws in ThisWorkbook.Worksheets
   ws.Activate
   Range("F8").Copy
   Workbooks("master_table.xlsx").Activate
   ActiveSheet.Paste
   ActiveCell.Offset(0,1).Activate
Next ws

ABE: Sorry, I see you also want to change the Range each time, too. Is there any logic to which Range is used on each sheet?
 
Last edited:
Upvote 0
Thanks for the reply, JonXL,

Not really. The source sheet is a ten page application form filled out by 300 different people. My task is to tabulate all their responses which are scattered over 600 cells in each workbook.
 
Last edited:
Upvote 0
Do you at least know which sheets you need and which cells are needed from each sheet? (And will that always be the same?)

Should also be able to work with that...
 
Last edited:
Upvote 0
If your answer was 'yes' to those questions, try something like this:

Code:
Sub UpdateSheets()
Dim aSheet(1 To 2) As String
Dim aRange(1 To 2) As String
Dim a As Long


aSheet(1) = "Sheet1"
aSheet(2) = "Sheet2"

aRange(1) = "F8"
aRange(2) = "G10"

For a = 1 To 2
   Sheets(aSheet(a)).Activate
   Range(aRange(a)).Copy
   Workbooks("master_table.xlsx").Activate
   ActiveSheet.Paste
   ActiveCell.Offset(0, 1).Activate
Next a

End Sub

Just add/modify the Sheet and Range values as needed - make sure to increase the arrays in the Dim statements to account for values you want to add.
 
Upvote 0
Another option
Code:
Sub chk()
   Dim Ary As Variant
   Dim i As Long
   arr = Array("Sheet1", "F8", "Sheet2", "H37", "Sheet3", "I19")
   For i = 0 To UBound(Ary) Step 2
      Sheets(Ary(i)).Range(Ary(i + 1)).Copy
      Workbooks("master_table.xlsx").Activate
      ActiveSheet.Paste
      ActiveCell.Offset(0, 1).Activate
   Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,276
Members
449,075
Latest member
staticfluids

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