Macro to copy data from a '.csv' file to another '.csv' file












0














I need to develop a macro that allows me to copy data from a file named 'file.csv' to a file 'data.csv'.
The first file could be half empty and therefore at first I need to look for the data.
The most important part is at the end when I try to paste it. It returns a strange error "Application-define or object-defined error" where there are the ***.



    Sub dataComposer()

Application.ScreenUpdating = False
Application.DisplayAlerts = False

Dim Filename As String
Dim begin As Integer
Dim over As Integer
Dim wkbAll As Workbook
Dim wkbTemp As Workbook
Dim newSheet As Worksheet
For y1 = 1 To 1 Step 1
'Open the source file
Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "file.csv")
wkbTemp.Activate
'Look for the part to copy
For x1 = 1 To 200000 Step 1
If IsEmpty(Cells(x1, 1)) = False Then
begin = x1
For x2 = x1 To 300000 Step 1
If IsEmpty(Cells(x2, 1)) = True Then
over = x2
Exit For
End If
Next
Exit For
End If
Next
'Open the destination file
Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "data.csv")

'Copy the data from the source
wkbTemp.Sheets(1).Cells.Copy
Range(Cells(begin, 1), Cells(over - 1, 47)).Select
Selection.Copy

'Now, paste it into the destination
Windows("data.csv").Activate
Range(Cells(being, 1)).Select '***
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

'Save and close
wkbTemp.Close
wkbTemp1.Save
wkbTemp1.Close

Next

Application.ScreenUpdating = True
Application.DisplayAlerts = True


End Sub









share|improve this question




















  • 1




    CSVs are text files - you shouldn't really need to open them in Excel at all. That said, see How to avoid using Select in Excel VBA.
    – Comintern
    Nov 12 '18 at 22:18










  • why are you using csv? Also is the data in the source file in a table format? Data starts in A1 with headers etc..
    – alowflyingpig
    Nov 12 '18 at 22:20






  • 1




    I think you are getting an error because being should be begin in the line Range(Cells(being, 1)).Select '***. To avoid (and discover) other errors due to typos, write Option Explicit before your code.
    – chillin
    Nov 13 '18 at 0:06


















0














I need to develop a macro that allows me to copy data from a file named 'file.csv' to a file 'data.csv'.
The first file could be half empty and therefore at first I need to look for the data.
The most important part is at the end when I try to paste it. It returns a strange error "Application-define or object-defined error" where there are the ***.



    Sub dataComposer()

Application.ScreenUpdating = False
Application.DisplayAlerts = False

Dim Filename As String
Dim begin As Integer
Dim over As Integer
Dim wkbAll As Workbook
Dim wkbTemp As Workbook
Dim newSheet As Worksheet
For y1 = 1 To 1 Step 1
'Open the source file
Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "file.csv")
wkbTemp.Activate
'Look for the part to copy
For x1 = 1 To 200000 Step 1
If IsEmpty(Cells(x1, 1)) = False Then
begin = x1
For x2 = x1 To 300000 Step 1
If IsEmpty(Cells(x2, 1)) = True Then
over = x2
Exit For
End If
Next
Exit For
End If
Next
'Open the destination file
Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "data.csv")

'Copy the data from the source
wkbTemp.Sheets(1).Cells.Copy
Range(Cells(begin, 1), Cells(over - 1, 47)).Select
Selection.Copy

'Now, paste it into the destination
Windows("data.csv").Activate
Range(Cells(being, 1)).Select '***
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

'Save and close
wkbTemp.Close
wkbTemp1.Save
wkbTemp1.Close

Next

Application.ScreenUpdating = True
Application.DisplayAlerts = True


End Sub









share|improve this question




















  • 1




    CSVs are text files - you shouldn't really need to open them in Excel at all. That said, see How to avoid using Select in Excel VBA.
    – Comintern
    Nov 12 '18 at 22:18










  • why are you using csv? Also is the data in the source file in a table format? Data starts in A1 with headers etc..
    – alowflyingpig
    Nov 12 '18 at 22:20






  • 1




    I think you are getting an error because being should be begin in the line Range(Cells(being, 1)).Select '***. To avoid (and discover) other errors due to typos, write Option Explicit before your code.
    – chillin
    Nov 13 '18 at 0:06
















0












0








0







I need to develop a macro that allows me to copy data from a file named 'file.csv' to a file 'data.csv'.
The first file could be half empty and therefore at first I need to look for the data.
The most important part is at the end when I try to paste it. It returns a strange error "Application-define or object-defined error" where there are the ***.



    Sub dataComposer()

Application.ScreenUpdating = False
Application.DisplayAlerts = False

Dim Filename As String
Dim begin As Integer
Dim over As Integer
Dim wkbAll As Workbook
Dim wkbTemp As Workbook
Dim newSheet As Worksheet
For y1 = 1 To 1 Step 1
'Open the source file
Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "file.csv")
wkbTemp.Activate
'Look for the part to copy
For x1 = 1 To 200000 Step 1
If IsEmpty(Cells(x1, 1)) = False Then
begin = x1
For x2 = x1 To 300000 Step 1
If IsEmpty(Cells(x2, 1)) = True Then
over = x2
Exit For
End If
Next
Exit For
End If
Next
'Open the destination file
Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "data.csv")

'Copy the data from the source
wkbTemp.Sheets(1).Cells.Copy
Range(Cells(begin, 1), Cells(over - 1, 47)).Select
Selection.Copy

'Now, paste it into the destination
Windows("data.csv").Activate
Range(Cells(being, 1)).Select '***
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

'Save and close
wkbTemp.Close
wkbTemp1.Save
wkbTemp1.Close

Next

Application.ScreenUpdating = True
Application.DisplayAlerts = True


End Sub









share|improve this question















I need to develop a macro that allows me to copy data from a file named 'file.csv' to a file 'data.csv'.
The first file could be half empty and therefore at first I need to look for the data.
The most important part is at the end when I try to paste it. It returns a strange error "Application-define or object-defined error" where there are the ***.



    Sub dataComposer()

Application.ScreenUpdating = False
Application.DisplayAlerts = False

Dim Filename As String
Dim begin As Integer
Dim over As Integer
Dim wkbAll As Workbook
Dim wkbTemp As Workbook
Dim newSheet As Worksheet
For y1 = 1 To 1 Step 1
'Open the source file
Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "file.csv")
wkbTemp.Activate
'Look for the part to copy
For x1 = 1 To 200000 Step 1
If IsEmpty(Cells(x1, 1)) = False Then
begin = x1
For x2 = x1 To 300000 Step 1
If IsEmpty(Cells(x2, 1)) = True Then
over = x2
Exit For
End If
Next
Exit For
End If
Next
'Open the destination file
Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "data.csv")

'Copy the data from the source
wkbTemp.Sheets(1).Cells.Copy
Range(Cells(begin, 1), Cells(over - 1, 47)).Select
Selection.Copy

'Now, paste it into the destination
Windows("data.csv").Activate
Range(Cells(being, 1)).Select '***
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

'Save and close
wkbTemp.Close
wkbTemp1.Save
wkbTemp1.Close

Next

Application.ScreenUpdating = True
Application.DisplayAlerts = True


End Sub






excel vba csv






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 7:13









Pᴇʜ

20.2k42650




20.2k42650










asked Nov 12 '18 at 22:04









Francesco ZangaroFrancesco Zangaro

63




63








  • 1




    CSVs are text files - you shouldn't really need to open them in Excel at all. That said, see How to avoid using Select in Excel VBA.
    – Comintern
    Nov 12 '18 at 22:18










  • why are you using csv? Also is the data in the source file in a table format? Data starts in A1 with headers etc..
    – alowflyingpig
    Nov 12 '18 at 22:20






  • 1




    I think you are getting an error because being should be begin in the line Range(Cells(being, 1)).Select '***. To avoid (and discover) other errors due to typos, write Option Explicit before your code.
    – chillin
    Nov 13 '18 at 0:06
















  • 1




    CSVs are text files - you shouldn't really need to open them in Excel at all. That said, see How to avoid using Select in Excel VBA.
    – Comintern
    Nov 12 '18 at 22:18










  • why are you using csv? Also is the data in the source file in a table format? Data starts in A1 with headers etc..
    – alowflyingpig
    Nov 12 '18 at 22:20






  • 1




    I think you are getting an error because being should be begin in the line Range(Cells(being, 1)).Select '***. To avoid (and discover) other errors due to typos, write Option Explicit before your code.
    – chillin
    Nov 13 '18 at 0:06










1




1




CSVs are text files - you shouldn't really need to open them in Excel at all. That said, see How to avoid using Select in Excel VBA.
– Comintern
Nov 12 '18 at 22:18




CSVs are text files - you shouldn't really need to open them in Excel at all. That said, see How to avoid using Select in Excel VBA.
– Comintern
Nov 12 '18 at 22:18












why are you using csv? Also is the data in the source file in a table format? Data starts in A1 with headers etc..
– alowflyingpig
Nov 12 '18 at 22:20




why are you using csv? Also is the data in the source file in a table format? Data starts in A1 with headers etc..
– alowflyingpig
Nov 12 '18 at 22:20




1




1




I think you are getting an error because being should be begin in the line Range(Cells(being, 1)).Select '***. To avoid (and discover) other errors due to typos, write Option Explicit before your code.
– chillin
Nov 13 '18 at 0:06






I think you are getting an error because being should be begin in the line Range(Cells(being, 1)).Select '***. To avoid (and discover) other errors due to typos, write Option Explicit before your code.
– chillin
Nov 13 '18 at 0:06














2 Answers
2






active

oldest

votes


















0














Try something along these lines



Set wkbTemp = ThisWorkbook.Path & "file.csv"
Set wkbTemp1 = ThisWorkbook.Path & "data.csv"

'assume data is on "sheet1"
Set wkbTemp_data = wkbTemp.Sheets("Sheet1")
Set wkbTemp_data1 = wkbTemp1.Sheets("Sheet1")

'Get last row in source wkb
LastRow = wkbTemp_data.Range("A" & Rows.Count).End(xlUp).Row

'Get last col
Last_Col = Cells(1, Columns.Count).End(xlToLeft).Column

'Return Col name from number
LastColName = Split(Cells(, Last_Col).Address, "$")(1)

'Get data to copy
wkbTemp_data1.Range(A1).Value wkbTemp_data.Range("A1:" & LastColName & ":" & LastRow).Value





share|improve this answer





























    0














    I found a solution and this is the code. Thank you everybody for helping anyway.



    Sub dataComposer()

    Application.ScreenUpdating = False
    Application.DisplayAlerts = False

    Dim Filename As String
    Dim begin As Long
    Dim over As Long
    Dim wkbAll As Workbook
    Dim wkbTemp As Workbook
    Dim newSheet As Worksheet
    Dim g1 As Integer
    Dim g2 As Integer
    Dim n1 As String
    Dim n2 As String
    g1 = Worksheets("Sheet1").Range("B1").Value
    g2 = Worksheets("Sheet1").Range("D1").Value
    n1 = Worksheets("Sheet1").Range("B2").Value
    n2 = Worksheets("Sheet1").Range("B3").Value
    For y1 = g1 To g2 Step 1
    'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
    'Workbooks.Open Filename
    Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & y1 & ".csv")
    wkbTemp.Activate
    For x1 = 1 To 200000 Step 1
    If IsEmpty(Cells(x1, 1)) = False Then
    'Cell A2 is not blank
    begin = x1
    For x2 = x1 To 300000 Step 1
    If IsEmpty(Cells(x2, 1)) = True Then
    over = x2
    Exit For
    End If
    Next
    Exit For
    End If
    Next



    'wkbTemp1.Activate

    Set wkbTemp_data = wkbTemp.Sheets(n1 & y1)


    wkbTemp_data.Cells.Copy
    Range(Cells(begin, 1), Cells(over - 1, 47)).Select
    Selection.Copy
    'Now, copy what you want from x:
    'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

    Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & ".csv")
    Set wkbTemp_data1 = wkbTemp1.Sheets(n1)

    'Now, paste to y worksheet:
    Windows(n1 & ".csv").Activate
    'wkbTemp1.Sheets(1).Activate
    Range(Cells(begin, 1), Cells(over - 1, 47)).Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
    :=False, Transpose:=False


    'Activate Source Worksheet
    wkbTemp.Close
    wkbTemp1.Save
    wkbTemp1.Close
    Next

    For y1 = g1 To g2 Step 1
    'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
    'Workbooks.Open Filename
    Set wkbTemp2 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & y1 & ".csv")
    wkbTemp2.Activate
    For x1 = 1 To 200000 Step 1
    If IsEmpty(Cells(x1, 1)) = False Then
    'Cell A2 is not blank
    begin = x1
    For x2 = x1 To 300000 Step 1
    If IsEmpty(Cells(x2, 1)) = True Then
    over = x2
    Exit For
    End If
    Next
    Exit For
    End If
    Next



    'wkbTemp1.Activate

    Set wkbTemp_data2 = wkbTemp2.Sheets(n2 & y1)


    wkbTemp_data2.Cells.Copy
    Range(Cells(begin, 1), Cells(over - 1, 47)).Select
    Selection.Copy
    'Now, copy what you want from x:
    'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

    Set wkbTemp3 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & ".csv")
    Set wkbTemp_data3 = wkbTemp3.Sheets(n2)

    'Now, paste to y worksheet:
    Windows(n2 & ".csv").Activate
    'wkbTemp1.Sheets(1).Activate
    Range(Cells(begin, 1), Cells(over - 1, 47)).Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
    :=False, Transpose:=False

    'Activate Source Worksheet
    wkbTemp2.Close
    wkbTemp3.Save
    wkbTemp3.Close

    Next

    Application.ScreenUpdating = True
    Application.DisplayAlerts = True


    End Sub





    share|improve this answer





















      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53270767%2fmacro-to-copy-data-from-a-csv-file-to-another-csv-file%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Try something along these lines



      Set wkbTemp = ThisWorkbook.Path & "file.csv"
      Set wkbTemp1 = ThisWorkbook.Path & "data.csv"

      'assume data is on "sheet1"
      Set wkbTemp_data = wkbTemp.Sheets("Sheet1")
      Set wkbTemp_data1 = wkbTemp1.Sheets("Sheet1")

      'Get last row in source wkb
      LastRow = wkbTemp_data.Range("A" & Rows.Count).End(xlUp).Row

      'Get last col
      Last_Col = Cells(1, Columns.Count).End(xlToLeft).Column

      'Return Col name from number
      LastColName = Split(Cells(, Last_Col).Address, "$")(1)

      'Get data to copy
      wkbTemp_data1.Range(A1).Value wkbTemp_data.Range("A1:" & LastColName & ":" & LastRow).Value





      share|improve this answer


























        0














        Try something along these lines



        Set wkbTemp = ThisWorkbook.Path & "file.csv"
        Set wkbTemp1 = ThisWorkbook.Path & "data.csv"

        'assume data is on "sheet1"
        Set wkbTemp_data = wkbTemp.Sheets("Sheet1")
        Set wkbTemp_data1 = wkbTemp1.Sheets("Sheet1")

        'Get last row in source wkb
        LastRow = wkbTemp_data.Range("A" & Rows.Count).End(xlUp).Row

        'Get last col
        Last_Col = Cells(1, Columns.Count).End(xlToLeft).Column

        'Return Col name from number
        LastColName = Split(Cells(, Last_Col).Address, "$")(1)

        'Get data to copy
        wkbTemp_data1.Range(A1).Value wkbTemp_data.Range("A1:" & LastColName & ":" & LastRow).Value





        share|improve this answer
























          0












          0








          0






          Try something along these lines



          Set wkbTemp = ThisWorkbook.Path & "file.csv"
          Set wkbTemp1 = ThisWorkbook.Path & "data.csv"

          'assume data is on "sheet1"
          Set wkbTemp_data = wkbTemp.Sheets("Sheet1")
          Set wkbTemp_data1 = wkbTemp1.Sheets("Sheet1")

          'Get last row in source wkb
          LastRow = wkbTemp_data.Range("A" & Rows.Count).End(xlUp).Row

          'Get last col
          Last_Col = Cells(1, Columns.Count).End(xlToLeft).Column

          'Return Col name from number
          LastColName = Split(Cells(, Last_Col).Address, "$")(1)

          'Get data to copy
          wkbTemp_data1.Range(A1).Value wkbTemp_data.Range("A1:" & LastColName & ":" & LastRow).Value





          share|improve this answer












          Try something along these lines



          Set wkbTemp = ThisWorkbook.Path & "file.csv"
          Set wkbTemp1 = ThisWorkbook.Path & "data.csv"

          'assume data is on "sheet1"
          Set wkbTemp_data = wkbTemp.Sheets("Sheet1")
          Set wkbTemp_data1 = wkbTemp1.Sheets("Sheet1")

          'Get last row in source wkb
          LastRow = wkbTemp_data.Range("A" & Rows.Count).End(xlUp).Row

          'Get last col
          Last_Col = Cells(1, Columns.Count).End(xlToLeft).Column

          'Return Col name from number
          LastColName = Split(Cells(, Last_Col).Address, "$")(1)

          'Get data to copy
          wkbTemp_data1.Range(A1).Value wkbTemp_data.Range("A1:" & LastColName & ":" & LastRow).Value






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 12 '18 at 22:33









          alowflyingpigalowflyingpig

          1479




          1479

























              0














              I found a solution and this is the code. Thank you everybody for helping anyway.



              Sub dataComposer()

              Application.ScreenUpdating = False
              Application.DisplayAlerts = False

              Dim Filename As String
              Dim begin As Long
              Dim over As Long
              Dim wkbAll As Workbook
              Dim wkbTemp As Workbook
              Dim newSheet As Worksheet
              Dim g1 As Integer
              Dim g2 As Integer
              Dim n1 As String
              Dim n2 As String
              g1 = Worksheets("Sheet1").Range("B1").Value
              g2 = Worksheets("Sheet1").Range("D1").Value
              n1 = Worksheets("Sheet1").Range("B2").Value
              n2 = Worksheets("Sheet1").Range("B3").Value
              For y1 = g1 To g2 Step 1
              'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
              'Workbooks.Open Filename
              Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & y1 & ".csv")
              wkbTemp.Activate
              For x1 = 1 To 200000 Step 1
              If IsEmpty(Cells(x1, 1)) = False Then
              'Cell A2 is not blank
              begin = x1
              For x2 = x1 To 300000 Step 1
              If IsEmpty(Cells(x2, 1)) = True Then
              over = x2
              Exit For
              End If
              Next
              Exit For
              End If
              Next



              'wkbTemp1.Activate

              Set wkbTemp_data = wkbTemp.Sheets(n1 & y1)


              wkbTemp_data.Cells.Copy
              Range(Cells(begin, 1), Cells(over - 1, 47)).Select
              Selection.Copy
              'Now, copy what you want from x:
              'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

              Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & ".csv")
              Set wkbTemp_data1 = wkbTemp1.Sheets(n1)

              'Now, paste to y worksheet:
              Windows(n1 & ".csv").Activate
              'wkbTemp1.Sheets(1).Activate
              Range(Cells(begin, 1), Cells(over - 1, 47)).Select
              Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
              :=False, Transpose:=False


              'Activate Source Worksheet
              wkbTemp.Close
              wkbTemp1.Save
              wkbTemp1.Close
              Next

              For y1 = g1 To g2 Step 1
              'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
              'Workbooks.Open Filename
              Set wkbTemp2 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & y1 & ".csv")
              wkbTemp2.Activate
              For x1 = 1 To 200000 Step 1
              If IsEmpty(Cells(x1, 1)) = False Then
              'Cell A2 is not blank
              begin = x1
              For x2 = x1 To 300000 Step 1
              If IsEmpty(Cells(x2, 1)) = True Then
              over = x2
              Exit For
              End If
              Next
              Exit For
              End If
              Next



              'wkbTemp1.Activate

              Set wkbTemp_data2 = wkbTemp2.Sheets(n2 & y1)


              wkbTemp_data2.Cells.Copy
              Range(Cells(begin, 1), Cells(over - 1, 47)).Select
              Selection.Copy
              'Now, copy what you want from x:
              'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

              Set wkbTemp3 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & ".csv")
              Set wkbTemp_data3 = wkbTemp3.Sheets(n2)

              'Now, paste to y worksheet:
              Windows(n2 & ".csv").Activate
              'wkbTemp1.Sheets(1).Activate
              Range(Cells(begin, 1), Cells(over - 1, 47)).Select
              Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
              :=False, Transpose:=False

              'Activate Source Worksheet
              wkbTemp2.Close
              wkbTemp3.Save
              wkbTemp3.Close

              Next

              Application.ScreenUpdating = True
              Application.DisplayAlerts = True


              End Sub





              share|improve this answer


























                0














                I found a solution and this is the code. Thank you everybody for helping anyway.



                Sub dataComposer()

                Application.ScreenUpdating = False
                Application.DisplayAlerts = False

                Dim Filename As String
                Dim begin As Long
                Dim over As Long
                Dim wkbAll As Workbook
                Dim wkbTemp As Workbook
                Dim newSheet As Worksheet
                Dim g1 As Integer
                Dim g2 As Integer
                Dim n1 As String
                Dim n2 As String
                g1 = Worksheets("Sheet1").Range("B1").Value
                g2 = Worksheets("Sheet1").Range("D1").Value
                n1 = Worksheets("Sheet1").Range("B2").Value
                n2 = Worksheets("Sheet1").Range("B3").Value
                For y1 = g1 To g2 Step 1
                'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
                'Workbooks.Open Filename
                Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & y1 & ".csv")
                wkbTemp.Activate
                For x1 = 1 To 200000 Step 1
                If IsEmpty(Cells(x1, 1)) = False Then
                'Cell A2 is not blank
                begin = x1
                For x2 = x1 To 300000 Step 1
                If IsEmpty(Cells(x2, 1)) = True Then
                over = x2
                Exit For
                End If
                Next
                Exit For
                End If
                Next



                'wkbTemp1.Activate

                Set wkbTemp_data = wkbTemp.Sheets(n1 & y1)


                wkbTemp_data.Cells.Copy
                Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                Selection.Copy
                'Now, copy what you want from x:
                'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

                Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & ".csv")
                Set wkbTemp_data1 = wkbTemp1.Sheets(n1)

                'Now, paste to y worksheet:
                Windows(n1 & ".csv").Activate
                'wkbTemp1.Sheets(1).Activate
                Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                :=False, Transpose:=False


                'Activate Source Worksheet
                wkbTemp.Close
                wkbTemp1.Save
                wkbTemp1.Close
                Next

                For y1 = g1 To g2 Step 1
                'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
                'Workbooks.Open Filename
                Set wkbTemp2 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & y1 & ".csv")
                wkbTemp2.Activate
                For x1 = 1 To 200000 Step 1
                If IsEmpty(Cells(x1, 1)) = False Then
                'Cell A2 is not blank
                begin = x1
                For x2 = x1 To 300000 Step 1
                If IsEmpty(Cells(x2, 1)) = True Then
                over = x2
                Exit For
                End If
                Next
                Exit For
                End If
                Next



                'wkbTemp1.Activate

                Set wkbTemp_data2 = wkbTemp2.Sheets(n2 & y1)


                wkbTemp_data2.Cells.Copy
                Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                Selection.Copy
                'Now, copy what you want from x:
                'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

                Set wkbTemp3 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & ".csv")
                Set wkbTemp_data3 = wkbTemp3.Sheets(n2)

                'Now, paste to y worksheet:
                Windows(n2 & ".csv").Activate
                'wkbTemp1.Sheets(1).Activate
                Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                :=False, Transpose:=False

                'Activate Source Worksheet
                wkbTemp2.Close
                wkbTemp3.Save
                wkbTemp3.Close

                Next

                Application.ScreenUpdating = True
                Application.DisplayAlerts = True


                End Sub





                share|improve this answer
























                  0












                  0








                  0






                  I found a solution and this is the code. Thank you everybody for helping anyway.



                  Sub dataComposer()

                  Application.ScreenUpdating = False
                  Application.DisplayAlerts = False

                  Dim Filename As String
                  Dim begin As Long
                  Dim over As Long
                  Dim wkbAll As Workbook
                  Dim wkbTemp As Workbook
                  Dim newSheet As Worksheet
                  Dim g1 As Integer
                  Dim g2 As Integer
                  Dim n1 As String
                  Dim n2 As String
                  g1 = Worksheets("Sheet1").Range("B1").Value
                  g2 = Worksheets("Sheet1").Range("D1").Value
                  n1 = Worksheets("Sheet1").Range("B2").Value
                  n2 = Worksheets("Sheet1").Range("B3").Value
                  For y1 = g1 To g2 Step 1
                  'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
                  'Workbooks.Open Filename
                  Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & y1 & ".csv")
                  wkbTemp.Activate
                  For x1 = 1 To 200000 Step 1
                  If IsEmpty(Cells(x1, 1)) = False Then
                  'Cell A2 is not blank
                  begin = x1
                  For x2 = x1 To 300000 Step 1
                  If IsEmpty(Cells(x2, 1)) = True Then
                  over = x2
                  Exit For
                  End If
                  Next
                  Exit For
                  End If
                  Next



                  'wkbTemp1.Activate

                  Set wkbTemp_data = wkbTemp.Sheets(n1 & y1)


                  wkbTemp_data.Cells.Copy
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.Copy
                  'Now, copy what you want from x:
                  'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

                  Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & ".csv")
                  Set wkbTemp_data1 = wkbTemp1.Sheets(n1)

                  'Now, paste to y worksheet:
                  Windows(n1 & ".csv").Activate
                  'wkbTemp1.Sheets(1).Activate
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                  :=False, Transpose:=False


                  'Activate Source Worksheet
                  wkbTemp.Close
                  wkbTemp1.Save
                  wkbTemp1.Close
                  Next

                  For y1 = g1 To g2 Step 1
                  'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
                  'Workbooks.Open Filename
                  Set wkbTemp2 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & y1 & ".csv")
                  wkbTemp2.Activate
                  For x1 = 1 To 200000 Step 1
                  If IsEmpty(Cells(x1, 1)) = False Then
                  'Cell A2 is not blank
                  begin = x1
                  For x2 = x1 To 300000 Step 1
                  If IsEmpty(Cells(x2, 1)) = True Then
                  over = x2
                  Exit For
                  End If
                  Next
                  Exit For
                  End If
                  Next



                  'wkbTemp1.Activate

                  Set wkbTemp_data2 = wkbTemp2.Sheets(n2 & y1)


                  wkbTemp_data2.Cells.Copy
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.Copy
                  'Now, copy what you want from x:
                  'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

                  Set wkbTemp3 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & ".csv")
                  Set wkbTemp_data3 = wkbTemp3.Sheets(n2)

                  'Now, paste to y worksheet:
                  Windows(n2 & ".csv").Activate
                  'wkbTemp1.Sheets(1).Activate
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                  :=False, Transpose:=False

                  'Activate Source Worksheet
                  wkbTemp2.Close
                  wkbTemp3.Save
                  wkbTemp3.Close

                  Next

                  Application.ScreenUpdating = True
                  Application.DisplayAlerts = True


                  End Sub





                  share|improve this answer












                  I found a solution and this is the code. Thank you everybody for helping anyway.



                  Sub dataComposer()

                  Application.ScreenUpdating = False
                  Application.DisplayAlerts = False

                  Dim Filename As String
                  Dim begin As Long
                  Dim over As Long
                  Dim wkbAll As Workbook
                  Dim wkbTemp As Workbook
                  Dim newSheet As Worksheet
                  Dim g1 As Integer
                  Dim g2 As Integer
                  Dim n1 As String
                  Dim n2 As String
                  g1 = Worksheets("Sheet1").Range("B1").Value
                  g2 = Worksheets("Sheet1").Range("D1").Value
                  n1 = Worksheets("Sheet1").Range("B2").Value
                  n2 = Worksheets("Sheet1").Range("B3").Value
                  For y1 = g1 To g2 Step 1
                  'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
                  'Workbooks.Open Filename
                  Set wkbTemp = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & y1 & ".csv")
                  wkbTemp.Activate
                  For x1 = 1 To 200000 Step 1
                  If IsEmpty(Cells(x1, 1)) = False Then
                  'Cell A2 is not blank
                  begin = x1
                  For x2 = x1 To 300000 Step 1
                  If IsEmpty(Cells(x2, 1)) = True Then
                  over = x2
                  Exit For
                  End If
                  Next
                  Exit For
                  End If
                  Next



                  'wkbTemp1.Activate

                  Set wkbTemp_data = wkbTemp.Sheets(n1 & y1)


                  wkbTemp_data.Cells.Copy
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.Copy
                  'Now, copy what you want from x:
                  'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

                  Set wkbTemp1 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n1 & ".csv")
                  Set wkbTemp_data1 = wkbTemp1.Sheets(n1)

                  'Now, paste to y worksheet:
                  Windows(n1 & ".csv").Activate
                  'wkbTemp1.Sheets(1).Activate
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                  :=False, Transpose:=False


                  'Activate Source Worksheet
                  wkbTemp.Close
                  wkbTemp1.Save
                  wkbTemp1.Close
                  Next

                  For y1 = g1 To g2 Step 1
                  'Filename = ThisWorkbook.Path & "data" & y1 & ".csv"
                  'Workbooks.Open Filename
                  Set wkbTemp2 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & y1 & ".csv")
                  wkbTemp2.Activate
                  For x1 = 1 To 200000 Step 1
                  If IsEmpty(Cells(x1, 1)) = False Then
                  'Cell A2 is not blank
                  begin = x1
                  For x2 = x1 To 300000 Step 1
                  If IsEmpty(Cells(x2, 1)) = True Then
                  over = x2
                  Exit For
                  End If
                  Next
                  Exit For
                  End If
                  Next



                  'wkbTemp1.Activate

                  Set wkbTemp_data2 = wkbTemp2.Sheets(n2 & y1)


                  wkbTemp_data2.Cells.Copy
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.Copy
                  'Now, copy what you want from x:
                  'wkbTemp.Sheets(1).Range(Cells(begin, 1), Cells(over - 1, 47)).Copy

                  Set wkbTemp3 = Workbooks.Open(Filename:=ThisWorkbook.Path & "" & n2 & ".csv")
                  Set wkbTemp_data3 = wkbTemp3.Sheets(n2)

                  'Now, paste to y worksheet:
                  Windows(n2 & ".csv").Activate
                  'wkbTemp1.Sheets(1).Activate
                  Range(Cells(begin, 1), Cells(over - 1, 47)).Select
                  Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                  :=False, Transpose:=False

                  'Activate Source Worksheet
                  wkbTemp2.Close
                  wkbTemp3.Save
                  wkbTemp3.Close

                  Next

                  Application.ScreenUpdating = True
                  Application.DisplayAlerts = True


                  End Sub






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 13 '18 at 20:22









                  Francesco ZangaroFrancesco Zangaro

                  63




                  63






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53270767%2fmacro-to-copy-data-from-a-csv-file-to-another-csv-file%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      這個網誌中的熱門文章

                      Tangent Lines Diagram Along Smooth Curve

                      Yusuf al-Mu'taman ibn Hud

                      Zucchini