excel - VBA - 合并其他工作表时忽略工作表

标签 excel vba

我有一个工作簿,我需要合并一些工作表而不是其他工作表。

合并部分很容易(感谢 http://www.vbaexpress.com/kb/getarticle.php?kb_id=151)。

我正在努力忽略一张名为“映射”的工作表。

Sub CopyFromWorksheets()
Dim wrk As Workbook 'Workbook object - Always good to work with object variables
Dim sht As Worksheet 'Object for handling worksheets in loop
Dim trg As Worksheet 'Master Worksheet
Dim rng As Range 'Range object
Dim colCount As Integer 'Column count in tables in the worksheets

Set wrk = ActiveWorkbook 'Working in active workbook

For Each sht In wrk.Worksheets
    If sht.Name = "Master" Then
        MsgBox "There is a worksheet called as 'Master'." & vbCrLf & _
          "Please remove or rename this worksheet since 'Master' would be" & _
          "the name of the result worksheet of this process.", vbOKOnly + vbExclamation, "Error"
        Exit Sub
    End If
Next sht

 'We don't want screen updating
Application.ScreenUpdating = False

 'Add new worksheet as the last worksheet
Set trg = wrk.Worksheets.Add(After:=wrk.Worksheets(wrk.Worksheets.Count))
 'Rename the new worksheet
trg.Name = "Master"
 'Get column headers from the first worksheet
 'Column count first
Set sht = wrk.Worksheets(1)
colCount = sht.Cells(1, 255).End(xlToLeft).Column
 'Now retrieve headers, no copy&paste needed
With trg.Cells(1, 1).Resize(1, colCount)
    .Value = sht.Cells(1, 1).Resize(1, colCount).Value
     'Set font as bold
    .Font.Bold = True
End With

 'We can start loop
For Each sht In wrk.Worksheets
     'If worksheet in loop is the last one, stop execution (it is Master worksheet)
    If sht.Index = wrk.Worksheets.Count Then
        Exit For
    End If
     'Data range in worksheet - starts from second row as first rows are the header rows in all worksheets
    Set rng = sht.Range(sht.Cells(2, 1), sht.Cells(65536, 1).End(xlUp).Resize(, colCount))
     'Put data into the Master worksheet
    trg.Cells(65536, 1).End(xlUp).Offset(1).Resize(rng.Rows.Count, rng.Columns.Count).Value = rng.Value
Next sht
 'Fit the columns in Master worksheet
trg.Columns.AutoFit

 'Screen updating should be activated
Application.ScreenUpdating = True
End Sub

最佳答案

将最后一个循环更新为如下所示:

' We can start loop
For Each sht In wrk.Worksheets

    ' If worksheet in loop is the last one, stop execution (it is Master worksheet)
    If sht.Index = wrk.Worksheets.Count Then
        Exit For
    End If

    If Not sht.Name = "Mapping" Then
        ' Data range in worksheet - starts from second row as first rows are the header rows in all worksheets
        Set rng = sht.Range(sht.Cells(2, 1), sht.Cells(65536, 1).End(xlUp).Resize(, colCount))
        ' Put data into the Master worksheet
        trg.Cells(65536, 1).End(xlUp).Offset(1).Resize(rng.Rows.Count, rng.Columns.Count).Value = rng.Value

    End If

Next sht

解释:

当此脚本循环遍历每个组合数据的工作表时,您的代码首先检查工作表是否是工作簿中的最后一个工作表。如果是这样,它将停止循环并且对最后一张表不执行任何操作。我在该点下方添加了代码。行If Not sht.Name = "Mapping" Then告诉 VBA 只执行 IF 中的代码如果循环中的当前工作表未命名为“映射”,则阻止。

关于excel - VBA - 合并其他工作表时忽略工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59459627/

相关文章:

python - 像 excel 列一样重复字母?

vba - 记录发生哪行错误 : vba

vba - Excel VBA 在另一个工作簿中使用数据透视表数据

vba - Outlook 2010 创建文件夹和子文件夹

arrays - 在vba中随机播放数组

c# - 检索Excel工作表单元格值

python - 使用 python pandas style.where (或其他方式)为不匹配的两列中的特定单元格着色并导出到 Excel

excel - Workbook.BeforeSave 事件,确定他们保存为什么类型

vba - 如何创建动态变量名VBA

vba - 是否可以编写一个 VBA 代码来搜索完全相同的数据或过去最接近的数据?