宏 - 打开文件夹中的所有文件

时间:2012-06-22 08:41:56

标签: excel-vba excel-2010 vba excel

我想打开指定文件夹中的所有文件,并拥有以下代码

Sub OpenFiles()
Dim MyFolder As String
Dim MyFile As String
MyFolder = "\\ILAFILESERVER\Public\Documents\Renewable Energy\FiTs\1 Planning
           Department\Marks Tracker\Quality Control Reports"
MyFile = Dir(MyFolder & "\*.xlsx")
Do While MyFile <> ""
Workbooks.Open Filename:=MyFolder & "\" & MyFile
Loop
End Sub

我遇到的问题是它只是不断尝试重复打开文件夹中的第一个文件而不会继续前进。任何人都可以提供帮助,我在VBA有点新手,并且可以提供一些帮助。我正在尝试打开大约30个全部采用.xlsx格式的报告。非常感谢提前。

3 个答案:

答案 0 :(得分:25)

您必须在loop

之前添加此行
    MyFile = Dir
Loop

答案 1 :(得分:2)

您可以在循环检查语句中使用Len(StrFile) > 0

Sub openMyfile()

    Dim Source As String
    Dim StrFile As String

    'do not forget last backslash in source directory.
    Source = "E:\Planning\03\"
    StrFile = Dir(Source)

    Do While Len(StrFile) > 0                        
        Workbooks.Open Filename:=Source & StrFile
        StrFile = Dir()
    Loop
End Sub

答案 2 :(得分:1)

请尝试以下代码:

Sub opendfiles()

Dim myfile As Variant
Dim counter As Integer
Dim path As String

myfolder = "D:\temp\"
ChDir myfolder
myfile = Application.GetOpenFilename(, , , , True)
counter = 1
If IsNumeric(myfile) = True Then
    MsgBox "No files selected"
End If
While counter <= UBound(myfile)
    path = myfile(counter)
    Workbooks.Open path
    counter = counter + 1
Wend

End Sub