0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

開いているブックの1番目のシートからデータをコピー、開いているすべてのブックで繰り返す

Posted at
Option Explicit
Sub IntegrateData()
    Dim wb As Variant
    '開いているブックの1番目のシートから、データをコピー
    '開いているすべてのブックで繰り返す
    For Each wb In Workbooks
    
        'この統合ブックは除く
        If wb.Name <> ThisWorkbook.Name Then
            'あるブックのシート1のセル範囲A2:F列の最終行をコピーし、
            'このブックのシート1のA列の最終行に貼り付ける
            wb.Sheets(1).Range("A2:F" & SmaxRow).Copy _
                ThisWorkbook.Sheets(1).Range("A" & DmaxRow + 1)
        End If
    Next wb
End Sub
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?