View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
keith keith is offline
external usenet poster
 
Posts: 34
Default Using a variable name as part of a file pathname to open many files

Yes this can be done,

use a string variable for the name of the
workbooks.open Filename:=strFileName
''where strFileName is a path and file name of the file
you want to open, then use the activeworkbook and
thisworkbook object to play around with the workbooks and
data.

Keith
www.kjtfs.com

-----Original Message-----
I need to open 76 Excel files one at a time and copy the

data on a tab
to a rollup workbook with 76 tabs. Is there a way to

build an array
with the names of the 76 workbooks and then change the

pathname using
the 76 names in the array so I can open each workbook,

copy the
information to the rollup workbook, and close the

individual workbooks?
The workbooks are too large to open all of them and then

copy the data
to the rollup workbook!

TIA!!:)


---
Message posted from http://www.ExcelForum.com/

.