View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
ditzafar[_10_] ditzafar[_10_] is offline
external usenet poster
 
Posts: 1
Default a macro to run on all the file in the same folder


I have same questions.
1. im aryFiles did you mean dim aryfiles. if you mean it, for what do
need it?
2. for what do I need Dim i As Integer
3. selectFiles "c:\MyTest" did it is the name of the folder
if it the name of the folder where does this macro run on all th
files
4.when I runing this macro I get a erro message "sub or function no
define".
for the function selectFiles
5. Should I call my macro between this two line
selectFiles "c:\MyTest"

thanks

Set oFSO = Nothing

Bob Phillips Wrote:
Here's some code to open all files in a folder. just call your macr
after
opening

im aryFiles
Dim oFSO

Sub LoopFolders()
Dim i As Integer

Set oFSO = CreateObject("Scripting.FileSystemObject")

selectFiles "c:\MyTest"

Set oFSO = Nothing

End Sub


'---------------------------------------------------------------------------
Sub selectFiles(sPath)
'---------------------------------------------------------------------------
Dim Folder As Object
Dim Files As Object
Dim file As Object
Dim fldr

Set Folder = oFSO.GetFolder(sPath)

For Each fldr In Folder.Subfolders
selectFiles fldr.Path
Next fldr

For Each file In Folder.Files
If file.Type = "Microsoft Excel Worksheet" Then
Workbooks.Open Filename:=file.Path
' your macro here
Activeworkbook.Save
Activeworkbook.Close
End If
Next file

End Sub


--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"ditzafar"
wrote in
message ...

I want to write a macro that will run on all the file in the same
folder.
how do I do it?
thanks:)


--
ditzafar


------------------------------------------------------------------------
ditzafar's Profile:

http://www.excelforum.com/member.php...o&userid=29475
View this thread

http://www.excelforum.com/showthread...hreadid=497905


--
ditzafa
-----------------------------------------------------------------------
ditzafar's Profile: http://www.excelforum.com/member.php...fo&userid=2947
View this thread: http://www.excelforum.com/showthread.php?threadid=49790