Commander Vimes

New Member
Joined
Aug 8, 2016
Messages
11
Hello,

I need help with some VBA coding, my requirement is: I need to copy and paste ranges from 21 excel docs in a folder to a Master workbook withinrelevant named sheets. I have some code, but want to loop it so it runs through each of the docs and copys+pastes the relevant parts into the relevant sectionsof the MasterWorkbook<o:p></o:p>

<o:p> </o:p>
Example:<o:p></o:p>
Master Workbook has the below worksheets:<o:p></o:p>
>>INPUT N1<o:p></o:p>
>>INPUT N2<o:p></o:p>
>>INPUT D1<o:p></o:p>
>>INPUT C1<o:p></o:p>
<o:p></o:p>
Document 1 of 21 (as do the other 20) has the below sheets:<o:p></o:p>
N1<o:p></o:p>
N2<o:p></o:p>
D1<o:p></o:p>
C1<o:p></o:p>
<o:p></o:p>
I have code (see below) to copy range in N1 to referencecell in >>INPUT N1 (Application.Goto Reference:="R601C2") and so on for the other 3. Now I want to loopthe code so it repeats the process for the remaining docs and changes the references so that they are correct.<o:p></o:p>
<o:p></o:p>
Each doc 1-21 should paste the info into a different section eg <o:p></o:p>
Doc 1 Application.Goto Reference:="R1C2"<o:p></o:p>
Doc 2 Application.Goto Reference:="R101C2"<o:p></o:p>
Doc 3 Application.Goto Reference:="R201C2"<o:p></o:p>
Etc <o:p></o:p>
<o:p></o:p>
So how do I get the Code to loop and change the document itopens and the reference it pastes to in the Master Workbook?<o:p></o:p>
<o:p></o:p>
So I want the code to run from the Master Workbook and:

  • Open doc 1<o:p></o:p>
  • Copy N1 range<o:p></o:p>
  • Paste into Master Workbook >>INPUT N1 specified range<o:p></o:p>
  • Do this for N2, D1,C1 aswell
  • Close Doc 1<o:p></o:p>
  • Repeat process for Doc 2, 3, 4 etc<o:p></o:p>
<o:p></o:p>
<o:p></o:p>
My current CODE:<o:p></o:p>
<o:p></o:p>
Rich (BB code):
SubCopyInputSheetData()<o:p></o:p>
'<o:p></o:p>
' CopyInputSheetData Macro<o:p></o:p>
'<o:p></o:p>
<o:p> </o:p>
'<o:p></o:p>
<o:p> </o:p>
    ' Preventsscreen refreshing.<o:p></o:p>
   Application.ScreenUpdating = False<o:p></o:p>
<o:p> </o:p>
'Timer Start<o:p></o:p>
Dim i As Integer<o:p></o:p>
<o:p> </o:p>
Dim StartTime As Double<o:p></o:p>
Dim SecondsElapsed As Double<o:p></o:p>
<o:p> </o:p>
  StartTime = Timer<o:p></o:p>
<o:p> </o:p>
<o:p> </o:p>
'*************************************************************************************************<o:p></o:p>
<o:p> </o:p>
'Need to change File location to the correct one filesare stored in<o:p></o:p>
    Workbooks.OpenFilename:= _<o:p></o:p>
        "filelocation for Document 1.xlsm"<o:p></o:p>
<o:p> </o:p>
'N1<o:p></o:p>
'This is the copy section to copy N1 from Sheet openedabove<o:p></o:p>
   Sheets("N1").Select<o:p></o:p>
   Range("A5").Select<o:p></o:p>
   Selection.CurrentRegion.Select<o:p></o:p>
    Selection.Copy<o:p></o:p>
 <o:p></o:p>
    Windows("MasterWorkbook.xlsm")._<o:p></o:p>
        Activate<o:p></o:p>
Sheets(">>INPUT N1").Select<o:p></o:p>
   Application.Goto Reference:="R601C2"<o:p></o:p>
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,SkipBlanks _<o:p></o:p>
        :=False,Transpose:=False<o:p></o:p>
<o:p> </o:p>
'N2<o:p></o:p>
Windows("Document 1.xlsm"). _<o:p></o:p>
        Activate<o:p></o:p>
Sheets("N2").Select<o:p></o:p>
   Range("A5").Select<o:p></o:p>
   Selection.CurrentRegion.Select<o:p></o:p>
    Selection.Copy<o:p></o:p>
 Windows("MasterWorkbook.xlsm")._<o:p></o:p>
        Activate<o:p></o:p>
Sheets(">>INPUT N2").Select<o:p></o:p>
   Application.Goto Reference:="R601C2"<o:p></o:p>
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,SkipBlanks _<o:p></o:p>
        :=False,Transpose:=False<o:p></o:p>
<o:p> </o:p>
'D1<o:p></o:p>
Windows("Document 1.xlsm"). _<o:p></o:p>
        Activate<o:p></o:p>
Sheets("D1").Select<o:p></o:p>
   Range("A5").Select<o:p></o:p>
   Selection.CurrentRegion.Select<o:p></o:p>
    Selection.Copy<o:p></o:p>
 Windows("MasterWorkbook.xlsm")._<o:p></o:p>
        Activate<o:p></o:p>
Sheets(">>INPUT D1").Select<o:p></o:p>
   Application.Goto Reference:="R601C2"<o:p></o:p>
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,SkipBlanks _<o:p></o:p>
        :=False,Transpose:=False<o:p></o:p>
<o:p> </o:p>
<o:p> </o:p>
'C1<o:p></o:p>
Windows("Document 1.xlsm"). _<o:p></o:p>
        Activate<o:p></o:p>
Sheets("C1").Select<o:p></o:p>
   Range("A5").Select<o:p></o:p>
   Selection.CurrentRegion.Select<o:p></o:p>
    Selection.Copy<o:p></o:p>
 Windows("MasterWorkbook.xlsm")._<o:p></o:p>
        Activate<o:p></o:p>
Sheets(">>INPUT C1").Select<o:p></o:p>
   Application.Goto Reference:="R601C2"<o:p></o:p>
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,SkipBlanks _<o:p></o:p>
        :=False,Transpose:=False<o:p></o:p>
<o:p> </o:p>
<o:p> </o:p>
Workbooks("Document 1.xlsm").Close<o:p></o:p>
<o:p> </o:p>
'*************************************************************************************************<o:p></o:p>
<o:p> </o:p>
<o:p> </o:p>
<o:p> </o:p>
     ' Enablesscreen refreshing.<o:p></o:p>
   Application.ScreenUpdating = True<o:p></o:p>
<o:p> </o:p>
  SecondsElapsed =Round(Timer - StartTime, 2)<o:p></o:p>
  MsgBox "Input Sheet Data has now been imported, in " & SecondsElapsed &" seconds", vbInformation<o:p></o:p>
End Sub 
<o:p></o:p>
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,214,908
Messages
6,122,186
Members
449,071
Latest member
cdnMech

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