Excelファイルのブックを複数開くことができるコードがありますが、手動で目的のファイルを選択する必要はありません私はすべての私のファイルを通過し、p00001、p00002、p00003と呼ばれるdatファイルを検索するように私のコードをループすることができるようにしたい。誰も私はどのようにこれを呼び出すすべてのファイルを選択する私のコードを編集することができます知っていますか?VBAコードを使用してdatファイルを検索し、同じブックの別のシートで開く
私のコードは次のとおりです。あなたがドリルダウンフォルダを行う必要があり
Sub ImportFiles()
Dim sheet As Worksheet
Dim total As Integer
Dim intChoice As Integer
Dim strPath As String
Dim i As Integer
Dim wbNew As Workbook
Dim wbSource As Workbook
Set wbNew = Workbooks.Add
'allow the user to select multiple files
Application.FileDialog(msoFileDialogOpen).AllowMultiSelect = True
'make the file dialog visible to the user
intChoice = Application.FileDialog(msoFileDialogOpen).Show
Application.ScreenUpdating = False
Application.DisplayAlerts = False
'determine what choice the user made
If intChoice <> 0 Then
'get the file path selected by the user
For i = 1 To Application.FileDialog(msoFileDialogOpen).SelectedItems.Count
strPath = Application.FileDialog(msoFileDialogOpen).SelectedItems(i)
Set wbSource = Workbooks.Open(strPath)
For Each sheet In wbSource.Worksheets
total = wbNew.Worksheets.Count
wbSource.Worksheets(sheet.Name).Copy _
after:=wbNew.Worksheets(total)
Next sheet
wbSource.Close
Next i
End If
End Sub
は、これらのファイルがコンピュータ上の任意の場所* *ていますか?または、あなたは開いている/使用したいすべてのファイルを含むフォルダ(おそらくはサブフォルダ)を持っていますか? – BruceWayne
これらはすべて大きなフォルダ内の異なるサブフォルダ内に含まれています –
サブフォルダ内のファイルをループする方法を調べて、ファイル名で 'If'文を実行することができます。たとえば' If Instr(1、myFile.Name 、 "P00")それから... '。 – BruceWayne