Modify code to all worksheets

gnoke

New Member
Joined
Jul 21, 2010
Messages
9
Hi,

I am using the following code to import all files in a directory.
Could someone please assist me in modifying the code, so that the imported files is pasted in all worksheets, not just the first (sheet1)?
Code:
Sub Importere_filer()
Dim mnthNum As Integer
Dim myBook As Workbook
Dim myRows As Long
 
With Application
    .DisplayAlerts = False
    .EnableEvents = False
    .ScreenUpdating = False
End With
 
With Application.FileSearch
    .NewSearch
    'Change this to your directory
    On Error GoTo ErrHandler:
    .LookIn = "H:\div\"
    .SearchSubFolders = False
    .Filename = "*.txt"
    If .Execute() > 0 Then
        For i = 1 To .FoundFiles.Count
            Workbooks.OpenText .FoundFiles(i), , , xlDelimited, , , , True
            Set myBook = ActiveWorkbook
            myRows = ThisWorkbook.Worksheets(1).Range("A65536").End(xlUp).Row + 1
                ActiveSheet.UsedRange.Copy _
                ThisWorkbook.Worksheets(1).Cells(myRows, 1)
                myRows = myRows + 1
            myBook.Close
         Next i
    End If
 
ErrHandler:
End With
 
With Application
    .DisplayAlerts = True
    .EnableEvents = True
    .ScreenUpdating = True
End With
 
End Sub

Gnoke:)

Duplicate: http://www.excelforum.com/excel-programming/739146-modify-code-to-all-worksheets.html
 
Try:
Code:
Sub Importere_filer()

Dim mnthNum As Integer
Dim myBook As Workbook
Dim myRows As Long
Dim i As Integer

With Application
    .DisplayAlerts = False
    .EnableEvents = False
    .ScreenUpdating = False
End With
 
With Application.FileSearch
    .NewSearch
    'Change this to your directory
    On Error GoTo ErrHandler:
    .LookIn = "H:\div\"
    .SearchSubFolders = False
    .Filename = "*.txt"
    If .Execute() > 0 Then
    
    'Create the missing worksheets:
    If ActiveWorkbook.Sheets.Count < .FoundFiles.Count Then
        For i = ActiveWorkbook.Sheets.Count To .FoundFiles.Count - 1
            Sheets.Add
        Next i
    End If
    
        For i = 1 To .FoundFiles.Count
            Workbooks.OpenText .FoundFiles(i), , , xlDelimited, , , , True
            Set myBook = ActiveWorkbook
            myRows = ThisWorkbook.Worksheets(i).Range("A65536").End(xlUp).Row + 1
                ActiveSheet.UsedRange.Copy _
                ThisWorkbook.Worksheets(i).Cells(myRows, 1)
                myRows = myRows + 1
            myBook.Close
         Next i
    End If
 
ErrHandler:
End With
 
With Application
    .DisplayAlerts = True
    .EnableEvents = True
    .ScreenUpdating = True
End With
 
End Sub
 
Upvote 0
Hi and thanks for your replay!

The macro runsm but with two issues.
-Now the macro only import a single text file, and not the whole folder.
-The single text file is only applied to the first 4 sheets, and not the rest...

Any further ideas:)?
 
Upvote 0

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