Results 1 to 4 of 4

Open excel files from a folder

Threaded View

  1. #1
    Forum Contributor
    Join Date
    11-26-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    159

    Open excel files from a folder

    Hi All,
    I'm trying to open excel files from a folder for this, I have copied two Macro code and made changes according to my requirement but It's not working both the codes . can anyone look into the code please ?

    Sub nameofexcelfiles()
    Dim fpath As String
    Dim fol, f, fs, fc
        fpath = InputBox("enter the valid path")
            Set fs = CreateObject("scripting.filesystemobject")
            Set fol = fs.getfolder(fpath)
            Set fc = fol.Files
                    For Each f In fc
                        If UCase(Right(f.Name, 4)) = "xlsx" Then
                            Workbooks.Open fpath & "\" & f.Name
                        End If
                    Next f
      End Sub

    2 Macro

    
    
    Sub test2()
        Dim path As Variant
        Dim excelfile As Variant
                  ChDir path
                  path = "C:\Data\"
        
                   excelfile = Dir(path & "*.xlsx")
                        Do While excelfile <> ""
                           Workbooks.Open Filename:=path & excelfile
                         excelfile = Dir
                     Loop
    End Sub
    Last edited by mmmarks; 07-28-2012 at 02:24 AM.

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