+ Reply to Thread
Results 1 to 11 of 11

Application.FileSearch Excel 2010

  1. #1
    Registered User
    Join Date
    03-29-2011
    Location
    Luxembourg
    MS-Off Ver
    Excel 2003
    Posts
    23

    Application.FileSearch Excel 2010

    Hello all,
    I had a code on excel 2003 which opened the workbooks done something closed them and then moved to the next one. this was the code:
    Please Login or Register  to view this content.
    Now I am using excel 2010 and I found this helpful code posted by "RoyUK" and replaced my code.

    Please Login or Register  to view this content.
    It finds files in the activeworkbook folder, open it, do what i want it to do, BUT instead of moving to the next file after closing it. It just reopen the same file and try to do the same stuff again.

    How should I change it so that it will move to the file in the folder ?
    Thanks!

  2. #2
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Application.FileSearch Excel 2010

    Please Login or Register  to view this content.
    Last edited by snb; 06-22-2011 at 08:17 AM.



  3. #3
    Registered User
    Join Date
    03-29-2011
    Location
    Luxembourg
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Application.FileSearch Excel 2010

    It doesn't work. Still keeps opening the same file after it has worked and closed it.

  4. #4
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Application.FileSearch Excel 2010

    No you are mistaken (unless you altered the code).
    Check the files in the directory for duplicates.

  5. #5
    Registered User
    Join Date
    03-29-2011
    Location
    Luxembourg
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Application.FileSearch Excel 2010

    The way I am doing it is like this :
    sPath = ActiveWorkbook.Path & "\" ' to be adapted
    sFil = Dir("*.xls")

    Do While sFil <> ""
    With Workbooks.Open(sPath & sFil)
    Call Control
    .Close True
    End With
    sFil = Dir
    Loop
    what is wrong in it ?

  6. #6
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Application.FileSearch Excel 2010

    See the result in the msgbox
    Do not use F8 but F5 instead.

    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    03-29-2011
    Location
    Luxembourg
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Application.FileSearch Excel 2010

    yes it shows the list with the files that are located inside the foler.
    can't understand why it keeps opening dong the procedure and them reopening the file again.

  8. #8
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Application.FileSearch Excel 2010

    It doesn't as you can see after running this code that adds an empty sheet in each file:
    Please Login or Register  to view this content.

  9. #9
    Registered User
    Join Date
    03-29-2011
    Location
    Luxembourg
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Application.FileSearch Excel 2010

    your macro works. But when i insert the line "Call Control" it now returns this message on the line "sFil = Dir" Invalid procedure call or argument.
    With Workbooks.Open(sPath & sFil)
    .sheets.add , .sheets(.sheets.count)
    .Close True
    instead of adding a sheet or doing something can u tell me if calling a sub say "Call Control" would also work?
    I start to think the problem is with the rest of my macro, however when i run it on a single file it does the work, open the second file copy and paste there close the second file, close my file. The only problem is that it does not go the the next file.
    I have attached the macro file, maybe justby looking you can see where the problem is.
    Last edited by rafa; 06-24-2011 at 11:14 AM.

  10. #10
    Registered User
    Join Date
    03-29-2011
    Location
    Luxembourg
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Application.FileSearch Excel 2010

    I ended up using another method. the File System Object.
    here is what i got.


    Sub Openfiles
    Dim FSO As Scripting.FileSystemObject
    Dim folder As Scripting.folder, file As Scripting.file, wb As Workbook
    Dim directory As String

    directory = ActiveWorkbook.Path

    Set FSO = CreateObject("Scripting.FileSystemObject")
    Set folder = FSO.GetFolder(directory)

    For Each file In folder.Files
    Workbooks.Open file
    Call Control 'call the subs that i want
    ActiveWorkbook.Close True
    Next file

    End Sub

  11. #11
    Forum Expert snb's Avatar
    Join Date
    05-09-2010
    Location
    VBA
    MS-Off Ver
    Redhat
    Posts
    5,649

    Re: Application.FileSearch Excel 2010

    Do not use macronames that can be reserved in VBA or Excel.
    Avoid using 'call' ( see the VBEditor helpfiles).
    Your macro causes the problem because it uses 'activeworksheet'; you better avoid activate and select in VBA.
    Post you macro here so we can have a look at it.
    I would rceommend to put the code into this macro instead of 'calling'.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1