VBA打开工作簿错误?

时间:2017-03-06 09:04:05

标签: excel vba

我正在使用vba尝试打开工作簿(如果它尚未打开)。

我遇到的问题有时工作簿可以由其他用户打开,因此如果工作簿被锁定,那么我想向用户提供一个以只读方式打开工作簿的选项。

代码:

'Open Planner
On Error Resume Next
Set WB = Workbooks("2017 Planner.xlsx")
On Error GoTo 0
If WB Is Nothing Then 'open workbook if not open
On Error GoTo Message4
Set WB = Workbooks.Open("G:\BUYING\Food Specials\2. Planning\1. Planning\1. Planner\8. 2017\2017 Planner.xlsx", Password:="samples", WriteResPassword:="samples", UpdateLinks:=False)
Message4:
Dim answer2 As Integer
answer2 = MsgBox("Oooops!" & vbNewLine & vbNewLine & "We had trouble opening the planner with Read/Write access. We can open the file in Read-Only but this means the planner won't automatically be updated. Would you like to continue?", vbYesNo + vbQuestion, "Notice")
If answer2 = vbNo Then
Exit Sub
Else
Set WB = Workbooks.Open("G:\BUYING\Food Specials\2. Planning\1. Planning\1. Planner\8. 2017\2017 Planner.xlsx", ReadOnly:=True, IgnoreReadOnlyRecommended:=True)
End If
End If

出于某种原因,我在这一行收到错误1004:

Set WB = Workbooks.Open("G:\BUYING\Food Specials\2. Planning\1. Planning\1. Planner\8. 2017\2017 Planner.xlsx", ReadOnly:=True, IgnoreReadOnlyRecommended:=True)

3 个答案:

答案 0 :(得分:0)

试试这个:

dim link as string

link= "G:\BUYING\Food Specials\2. Planning\1. Planning\1. Planner\8. 2017\2017 Planner.xlsx"
Set wb = Workbooks.Open(Filename:=link, UpdateLinks:=False, ReadOnly:=True, IgnoreReadOnlyRecommended:=True)

答案 1 :(得分:0)

只是为了检查,尝试将文件放在一些没有任何特殊字符的目录中。

即:C:\ workbooks

确保打开文件的权限。

答案 2 :(得分:0)

你可以测试它是否已经打开:

Sub Test()

    Dim sFilePath As String
    Dim wrkBk As Workbook

    sFilePath = "G:\BUYING\Food Specials\2. Planning\1. Planning\1. Planner\8. 2017\2017 Planner.xlsx"

    If WorkBookIsOpen(sFilePath) Then
        Set wrkBk = Workbooks.Open(sFilePath, ReadOnly:=True)
    Else
        Set wrkBk = Workbooks.Open(sFilePath)
    End If

End Sub

Public Function WorkBookIsOpen(FullFilePath As String) As Boolean

    Dim ff As Long

    On Error Resume Next

    ff = FreeFile()
    Open FullFilePath For Input Lock Read As #ff
    Close ff
    WorkBookIsOpen = (Err.Number <> 0)

    On Error GoTo 0

End Function

当函数WorkBookIsOpen返回一个布尔值并且ReadOnly属性需要一个布尔值时,你可以使用这个更短的过程:

Sub Test2()

    Dim sFilePath As String
    Dim wrkBk As Workbook

    sFilePath = "G:\BUYING\Food Specials\2. Planning\1. Planning\1. Planner\8. 2017\2017 Planner.xlsx"

    Set wrkBk = Workbooks.Open(sFilePath, ReadOnly:=WorkBookIsOpen(sFilePath))

End Sub