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)?
Gnoke
Duplicate: http://www.excelforum.com/excel-programming/739146-modify-code-to-all-worksheets.html
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