Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi there,
I have a question very closed from closed subject (IMPORTING 100 TEXT FILES INTO EXCEL AT ONCE, WITH LABELLING): How to import all the .txt files from a folder, and import them in seperate worksheets? I mean : I have several txt files and I would like to have them imported, each of them, in a separate worksheet --sorry I am not English mother tongue- Here is the VBa code I generated (and modified) : Sub Macro1() ' ' Macro1 Macro ' Macro enregistrée le 27/06/2006 par samuel.chausse With Application.FileSearch ..NewSearch ..LookIn = "U:\Services\" ..SearchSubFolders = True ..Filename = "*.txt" ..MatchTextExactly = True ..FileType = msoFileTypeAllFiles End With With Application.FileSearch If .Execute() 0 Then MsgBox "There were " & .FoundFiles.Count & _ " file(s) found." For i = 1 To .FoundFiles.Count MsgBox .FoundFiles(i) ActiveWorkbook.Worksheets.Add With ActiveSheet.QueryTables.Add(Connection:="TEXT;" & ..FoundFiles(i), Destination:=Range("A1")) .FieldNames = True .RowNumbers = False .FillAdjacentFormulas = False .PreserveFormatting = True .RefreshOnFileOpen = False .RefreshStyle = xlInsertDeleteCells .SavePassword = False .SaveData = True .AdjustColumnWidth = True .RefreshPeriod = 0 .TextFilePromptOnRefresh = False .TextFilePlatform = 1252 .TextFileStartRow = 1 .TextFileParseType = xlDelimited .TextFileTextQualifier = xlTextQualifierDoubleQuote .TextFileConsecutiveDelimiter = False .TextFileTabDelimiter = True .TextFileSemicolonDelimiter = False .TextFileCommaDelimiter = False .TextFileSpaceDelimiter = False .TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, _ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) .TextFileTrailingMinusNumbers = True '.Refresh BackgroundQuery:=False End With Next i Else MsgBox "There were no files found." End If End With End Sub Obviously there is a mistake because (even if no error message pops-up) there is nothing into the worksheets. Is there someone to correct my code or to give me a hand. I need this program in order to be able to deal with all these datas. Thank you very much Samuel - France |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pulling pdf files from general folder to specific folder | Excel Discussion (Misc queries) | |||
Copying all files in a folder to new folder | Excel Discussion (Misc queries) | |||
Move Files from Folder to Folder | Excel Programming | |||
how can I specific a folder with wildcard criteria and excel will import all the correct files in that folder? | Excel Discussion (Misc queries) | |||
how can I specific a folder with wildcard criteria and excel will import all the correct files in that folder? | Excel Programming |