Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
No built in command for that. You can import text files into existing
sheets or you can open text files and they become their own workbook I would do the second, then move the sheet to the subject workbook Dim bk as Workbook, v as Varaint Dim i as Long v = Array(1.txt, 2.txt, 3.txt) for i = lbound(v) to ubound(v) set bk = workbooks.Open("C:\MyTextFiles\" & v(i)) With thisworkbook bk.worksheets.Move After:=.worksheets(worksheet.count) set bk = Nothing End With Next Once the sheet is moved, the workbook that was created should disappear. -- Regards, Tom Ogilvy wrote in message oups.com... Is there a macro to import multiple .txt files and open them in separate sheets within the same workbook . Thanks, Cindy |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Import Multiple XML Files into Excel | Excel Discussion (Misc queries) | |||
import multiple csv files into excel 2007 | Excel Discussion (Misc queries) | |||
How can i import multiple .csv files into Excel for analysis? | Excel Programming | |||
Import of multiple .CSV files into Excel | Excel Programming | |||
Import multiple text files into excel | Excel Programming |