Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have a folder containing hundreds of tab-delimited text files, and need to convert all of them into Excel files. Presumably I should automate the conversion in the following steps: 1. Use Application.FileDialog(msoFileDialogFilePicker) or .FileSearch to point to the folder containing the files (I want it to be manual); 2. Excel loads individual files, one by one, with bypassing the wizard, to become a worksheet of data; 3. Excel saves the data with the same name (but certainly will be .xls not .txt) to the same directory of the source files. 4. Repeat the action until all files are done, show up a prompt msgbox with time spent. From Wrox Excel 2003 VBA book, I've got something like following after modifications: Public Sub FindDataFiles() Dim FileName As Variant Dim Message As String Dim Count As Long With Application.FileSearch ' Prepare search criteria .NewSearch .LookIn = "c:\data" .SearchSubFolders = True '.squ is the extension of my data files .FileType = "*.squ" .LastModified = msoLastModifiedAnyTime Count = .Execute ' Prepare output text Message = Format(Count, "0 ""Files Processed""") ' Here I need some codes to do what ' abovementioned and a timer. ' The Message has also to be modified ' to show the time Call MsgBox(Message, vbInformation) End With End Sub Much much thanks if someone could help for this. rgds, Maurice *** Sent via Developersdex http://www.developersdex.com *** |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - error saving file & error loading dll | Excel Discussion (Misc queries) | |||
Excel 2007 one network file running (loading and saving) slow | Excel Discussion (Misc queries) | |||
Automated Saving of File | Excel Programming | |||
Automated saving - Please Help & Advice | Excel Programming | |||
Excessive time loading/saving file | Excel Programming |