View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jen[_8_] Jen[_8_] is offline
external usenet poster
 
Posts: 5
Default VBA code to copy multiple Excel files from C drive to networkdriv

How about something like this, in pseudo code:

1. get a list of filenames using FileSystemObject
2. open each file using Application.Workbooks.Open and .Save. This
should refresh the contents.
3. copy each file to the new folder using FileCopy utility.

HTH, Jenn