0

指定されたディレクトリで実行され、新しいサマリー ブックを作成し、(定義されたディレクトリにある) 存在するすべての Excel ファイルから選択したデータをそのサマリー ブックにコピーし、サマリー ブックを新しい定義された場所に保存するマクロがあります。そして閉じます。データをマージするために複数のフォルダーがあり、場合によっては 30 を超えるディレクトリがある場合は、そのたびにディレクトリ名を変更する必要があります。

このマクロが、1 つのルート ディレクトリ内に含まれる複数のディレクトリを自動的にループし、上記と同じ操作を実行するようにしたいと考えています。どうすればそれが可能になりますか?「スクリプトフォルダー」メソッドを使用しましたが、コードを実行するとエラーが返されました...うまくいきませんでした!

2 つ目は、このマクロでサマリー ブックをフォルダー名 (データの結合元のディレクトリ) で保存することです。

私のコードはここにあります。見て、解決策を提案してください:

Sub MergeSitu()
Dim MyPath As String, FilesInPath As String
Dim MyFiles() As String
Dim SourceCcount As Long, FNum As Long
Dim mybook As Workbook, BaseWks As Worksheet
Dim sourceRange1 As Range, destrange1 As Range
Dim sourceRange2 As Range, destrange2 As Range
Dim sourceRange3 As Range, destrange3 As Range
Dim Rnum As Long, CalcMode As Long
Dim Cnum As Long
Dim listwb As Workbook
Dim mMonth As Range

 ' Change this to the path\folder location of the files.
MyPath = "D:\data\19h\13 feb\"

' Add a slash at the end of path if needed.
If Right(MyPath, 1) <> "\" Then
    MyPath = MyPath & "\"
End If

' If there are no Excel files in the folder, exit.
FilesInPath = Dir(MyPath & "*.xlsx*")
If FilesInPath = "" Then
    MsgBox "No files found"
    Exit Sub
End If
' Fill in the myFiles array with the list of Excel files in
' the search folder.
FNum = 0
Do While FilesInPath <> ""
    FNum = FNum + 1
    ReDim Preserve MyFiles(1 To FNum)
    MyFiles(FNum) = FilesInPath
    FilesInPath = Dir()
Loop

' Change the application properties.
With Application
    CalcMode = .Calculation
    .Calculation = xlCalculationManual
    .ScreenUpdating = False
    .EnableEvents = False
End With

' Add a new workbook with one sheet.
With Application

'--> Set contractor list file
Set listwb = .Workbooks.Open _
("D:\data\DataAssemble.xlsx")
End With
Set BaseWks = listwb.Sheets(1)
Cnum = 1
ActiveWorkbook.Sheets(1).Select
Range("P1").Select
ActiveCell.FormulaR1C1 = "Prod"

For Each mMonth In Sheets(1).Range("P1")
ActiveWorkbook.Sheets.Add after:=Worksheets(Worksheets.count)
 ActiveSheet.Name = mMonth
Next
Set BaseWks = listwb.Sheets(7)
Cnum = 1

' Loop through all of the files in the myFiles array.
If FNum > 0 Then
    For FNum = LBound(MyFiles) To UBound(MyFiles)
        Set mybook = Nothing
        On Error Resume Next
        Set mybook = Workbooks.Open(MyPath & MyFiles(FNum))
        On Error GoTo 0

        If Not mybook Is Nothing Then

            On Error Resume Next
            Set sourceRange1 = mybook.Worksheets(1).Range("A1:B1420")

            If Err.Number > 0 Then
                Err.Clear
                Set sourceRange1 = Nothing

            Else
                ' If the source range uses all of the rows
                ' then skip this file.
                If sourceRange1.Rows.count >= BaseWks.Rows.count Then
                    Set sourceRange1 = Nothing

                End If
            End If

            On Error GoTo 0

            If Not sourceRange1 Is Nothing Then

                SourceCcount = sourceRange1.Columns.count

                If Cnum + SourceCcount >= BaseWks.Columns.count Then
                    MsgBox "There are not enough columns in the sheet."
                    BaseWks.Columns.AutoFit
                    mybook.Close savechanges:=False
                    GoTo ExitTheSub
                Else

                    ' Copy the file name in the first row.
                    With sourceRange1
                        BaseWks.Cells(1, Cnum). _
                                Resize(, .Columns.count).Value = MyFiles(FNum)
                    End With


                    ' Set the destination range.
                    Set destrange1 = BaseWks.Cells(1, Cnum)
                    ' Copy the values from the source range
                    ' to the destination range.
                    With sourceRange1
                        Set destrange1 = destrange1. _
                                        Resize(.Rows.count, .Columns.count)
                    End With

                    destrange1.Value = sourceRange1.Value

                    Cnum = Cnum + SourceCcount
                End If
            End If
        mybook.Close savechanges:=False
        End If
BaseWks.Columns.AutoFit
    Next FNum
End If
listwb.Activate
ActiveWorkbook.SaveAs Filename:="D:\data\Merged\19h\Data_ " & (FolderName) & ".xlsx",  
Password:="", _  
WriteResPassword:="", ReadOnlyRecommended:=False, CreateBackup:=False
ActiveWorkbook.Close

ExitTheSub:
'Restore ScreenUpdating, Calculation and EnableEvents
With Application
    .ScreenUpdating = True
    .EnableEvents = True
    .Calculation = CalcMode
End With
End Sub

ありがとう!サンジーブ

4

1 に答える 1