web-dev-qa-db-ja.com

Excel VBAフォルダーを開く

2010 Excel VBAの使用-サブルーチンを介してフォルダーを開こうとしています。ここで何が間違っていますか?

VBA

Sub openFolder()  
  Dim preFolder As String, theFolder As String, fullPath as String

    theFolder = Left(Range("T12").Value, 8)
    preFolder = Left(Range("T12").Value, 5) & "xxx"
    fullPath = "P:\Engineering\031 Electronic Job Folders\" & preFolder & "\" & theFolder

    Shell(theFolder, "P:\Engineering\031 Electronic Job Folders\" & preFolder, vbNormalFocus)

End Sub
12
Sanya

Windowsファイルエクスプローラーを開く場合は、Explorer.exeを呼び出す必要があります。

Call Shell("Explorer.exe" & " " & "P:\Engineering", vbNormalFocus)

同等のsyxntax

Shell "Explorer.exe" & " " & "P:\Engineering", vbNormalFocus
28
d-stroyer

これを使用してブックを開き、そのブックのデータをテンプレートにコピーします。

Private Sub CommandButton24_Click()
Set Template = ActiveWorkbook
 With Application.FileDialog(msoFileDialogOpen)
    .InitialFileName = "I:\Group - Finance" ' Yu can select any folder you want
    .Filters.Clear
    .Title = "Your Title"
    If Not .Show Then
        MsgBox "No file selected.": Exit Sub
    End If
    Workbooks.OpenText .SelectedItems(1)

'以下は、ファイルをワークブックの新しいシートにコピーし、それらの値をシート1に貼り付けることです。

    Set myfile = ActiveWorkbook
    ActiveWorkbook.Sheets(1).Copy after:=ThisWorkbook.Sheets(1)
    myfile.Close
    Template.Activate
    ActiveSheet.Cells.Select
    Selection.Copy
    Sheets("Sheet1").Select
    Cells.Select
    ActiveSheet.Paste

End With
0
Isu