+ Reply to Thread
Results 1 to 3 of 3

macro to open folder

  1. #1
    Registered User
    Join Date
    02-06-2012
    Location
    Slovenia
    MS-Off Ver
    Excel 2007
    Posts
    2

    macro to open folder

    what is wrong with macros, fail to report any error, but the folder still does not open.

    Sub Gumb7_Klikni()
    Dim YourFile As Variant
    Dim YourFolderPath As Variant
    YourFolderPath = "C:\DAVID"
    ChDir YourFolderPath
    YourFile = Dir(YourFolderPath & "*.xls")
    Do While YourFile <> ""
    Workbooks.Open Filename:=YourFile
    YourFile = Dir
    Loop


    End Sub

    Thank you

  2. #2
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: macro to open folder

    You don't have:

    a. A slash at the end of your folder path.

    b. Code tags around your code.

    Sort both of those things out and everything will be lovely

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: macro to open folder

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ 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