18

VBA を使用して SharePoint から Excel ファイルを開こうとしています。探しているファイルはマクロを実行するたびに異なる可能性があるため、SharePoint フォルダーを表示して、必要なファイルを選択できるようにしたいと考えています。

以下のコードは、ネットワーク ドライブ上のファイルを検索する場合は問題なく動作しますが、それを SharePoint アドレスに置き換えると、「実行時エラー 76: パスが見つかりません」というメッセージが表示されます。

Sub Update_monthly_summary()

Dim SummaryWB As Workbook
Dim SummaryFileName As Variant

ChDir  "http://sharepoint/my/file/path"
SummaryFileName = Application.GetOpenFilename("Excel-files,*.xls", _
1, "Select monthly summary file", , False)
If SummaryFileName = False Then Exit Sub

Set SummaryWB = Workbooks.Open(SummaryFileName)

End Sub

このアドレスを Windows エクスプローラーに貼り付けると、SharePoint フォルダーに問題なくアクセスできるので、パスが正しいことがわかります。

なぜVBAはそれを好まないのですか?

4

7 に答える 7

12

次のコードを試して、SharePoint サイトからファイルを選択してください。

Dim SummaryWB As Workbook
Dim vrtSelectedItem As Variant

With Application.FileDialog(msoFileDialogOpen)
    .InitialFileName = "https://sharepoint.com/team/folder" & "\"
    .AllowMultiSelect = False
    .Show
    For Each vrtSelectedItem In .SelectedItems
        Set SummaryWB = Workbooks.Open(vrtSelectedItem)
    Next
End With

If SummaryWB Is Nothing then Exit Sub

私の記憶が正しければ、Microsoft Scripting Runtime参照を有効にする必要があります。また、あなたのサイトではバックスラッシュを使用しているかもしれませんが、私のサイトではスラッシュを使用しています。

于 2013-10-22T04:14:11.133 に答える
11

作成した次の関数を使用して、URL を WebDAV アドレスに変換します。この関数は、通常のシステム パスと UNC パスも無傷で返します。

この関数を VBA プロジェクトのモジュールに追加しMyNewPathString = Parse_Resource(myFileDialogStringVariable)、ファイル ダイアログ コマンドの直後、ファイル ダイアログで選択されたパスを使用する前に入力して、この関数を呼び出します。次に、ターゲット ファイルの場所を使用するときに「MyNewPathString」を参照します。

 Public Function Parse_Resource(URL As String)
 'Uncomment the below line to test locally without calling the function & remove argument above
 'Dim URL As String
 Dim SplitURL() As String
 Dim i As Integer
 Dim WebDAVURI As String


 'Check for a double forward slash in the resource path. This will indicate a URL
 If Not InStr(1, URL, "//", vbBinaryCompare) = 0 Then

     'Split the URL into an array so it can be analyzed & reused
     SplitURL = Split(URL, "/", , vbBinaryCompare)

     'URL has been found so prep the WebDAVURI string
     WebDAVURI = "\\"

     'Check if the URL is secure
     If SplitURL(0) = "https:" Then
         'The code iterates through the array excluding unneeded components of the URL
         For i = 0 To UBound(SplitURL)
             If Not SplitURL(i) = "" Then
                 Select Case i
                     Case 0
                         'Do nothing because we do not need the HTTPS element
                     Case 1
                         'Do nothing because this array slot is empty
                     Case 2
                     'This should be the root URL of the site. Add @ssl to the WebDAVURI
                         WebDAVURI = WebDAVURI & SplitURL(i) & "@ssl"
                     Case Else
                         'Append URI components and build string
                         WebDAVURI = WebDAVURI & "\" & SplitURL(i)
                 End Select
             End If
         Next i

     Else
     'URL is not secure
         For i = 0 To UBound(SplitURL)

            'The code iterates through the array excluding unneeded components of the URL
             If Not SplitURL(i) = "" Then
                 Select Case i
                     Case 0
                         'Do nothing because we do not need the HTTPS element
                     Case 1
                         'Do nothing because this array slot is empty
                         Case 2
                     'This should be the root URL of the site. Does not require an additional slash
                         WebDAVURI = WebDAVURI & SplitURL(i)
                     Case Else
                         'Append URI components and build string
                         WebDAVURI = WebDAVURI & "\" & SplitURL(i)
                 End Select
             End If
         Next i
     End If
  'Set the Parse_Resource value to WebDAVURI
  Parse_Resource = WebDAVURI
 Else
 'There was no double forward slash so return system path as is
     Parse_Resource = URL
 End If


 End Function

この関数は、ファイル パスが URL であるかどうか、および安全な (HTTPS) か安全でない (HTTP) かをチェックします。URL の場合、適切な WebDAV 文字列が作成されるため、SharePoint 内のターゲット ファイルに直接リンクできます。

ユーザーが SharePoint ファームと同じドメインにいない場合は特に、ファイルを開くたびに資格情報の入力を求められる可能性があります。

注: http サイトでこれをテストしていませんが、動作することを確信しています。

于 2014-06-14T15:28:15.160 に答える
2

スクリプトからhttp://sharepoint/my/fileパスとして使用するのではなく \\sharepoint\my\file、それが機能するはずです。C# で作成したプログラムで動作します。

于 2014-03-28T16:26:52.530 に答える
-1

次のようなことを試してください:

Shell ("C:\Program Files\Internet Explorer\iexplore.exe http://sharepoint/my/file/path")

それは私のために働いた。

于 2013-10-21T22:24:36.923 に答える