Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
TIA:
When I run code below on one computer works fine (cycles through all files in the folder once)...another computer the code opens and cycles through all files in the folder but opens the first file a second time and then stops. If I delete the first file in the folder, all is OK, the code cycles through all files once and stops. The files in the folder are created and exported from Access. Same versions of software (2003) and windows on both computers. How can this be??? Thanks, Joel Sub OpnFilesNew() Dim objFSO As Object Dim objFolder As Object Dim objFile As Object Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFolder = objFSO.GetFolder("c:\Copper") 'change directory For Each objFile In objFolder.Files If objFile.Type = "Microsoft Excel Worksheet" Then Workbooks.Open Filename:=objFolder.Path & "\" & objFile.Name 'do stuff Workbooks(objFile.Name).Save Workbooks(objFile.Name).Close True 'saves changes End If Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Works on one computer, but not another | Excel Discussion (Misc queries) | |||
Excel 2007 strange behavior on two computer | Excel Discussion (Misc queries) | |||
New Computer HPVAL no longer works | Excel Worksheet Functions | |||
Autocomplete works with my home computer but not the office computer | Excel Discussion (Misc queries) | |||
formatting in macro works on one computer | Excel Programming |