';将多个工作表中的数据附加到单个工作表宏中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了';将多个工作表中的数据附加到单个工作表宏中相关的知识,希望对你有一定的参考价值。

'Append data from multiple worksheet to single worksheet macro
  1. 'Append data from multiple worksheet to single worksheet macro
  2. Sub CombineData()
  3.  
  4. Dim wksFirst As Worksheet
  5. Dim wksLast As Worksheet
  6. Dim wksDest As Worksheet
  7. Dim strFirstSht As String
  8. Dim strLastSht As String
  9. Dim strDestSht As String
  10. Dim NextRow As Long
  11. Dim i As Long
  12.  
  13. strFirstSht = "Sheet1" 'change the name of the first sheet accordingly
  14. strLastSht = "Sheet2" 'change the name of the last sheet accordingly
  15. strDestSht = "Combined Data" 'change the name of the destination sheet accordingly
  16.  
  17. On Error Resume Next
  18. Set wksFirst = Worksheets(strFirstSht)
  19. If wksFirst Is Nothing Then
  20. MsgBox strFirstSht & " does not exist...", vbInformation
  21. Exit Sub
  22. Else
  23. Set wksLast = Worksheets(strLastSht)
  24. If wksLast Is Nothing Then
  25. MsgBox strLastSht & " does not exist...", vbInformation
  26. Exit Sub
  27. End If
  28. End If
  29. On Error GoTo 0
  30.  
  31. Application.ScreenUpdating = False
  32.  
  33. On Error Resume Next
  34. Application.DisplayAlerts = False
  35. Worksheets(strDestSht).Delete
  36. Application.DisplayAlerts = True
  37. On Error GoTo 0
  38.  
  39. Set wksDest = Worksheets.add(Worksheets(1))
  40.  
  41. wksDest.Name = strDestSht
  42.  
  43. For i = wksFirst.Index To wksLast.Index
  44. Worksheets(i).Range("A1:H89").Copy
  45. With wksDest
  46. NextRow = .Cells(.Rows.count, "A").End(xlUp).row + 1
  47. With .Cells(NextRow, "A")
  48. .PasteSpecial Paste:=8 'column width for Excel 2000 and later
  49. .PasteSpecial Paste:=xlPasteValues
  50. .PasteSpecial Paste:=xlPasteFormats
  51. End With
  52. End With
  53. Next i
  54.  
  55. wksDest.Cells(1).Select
  56.  
  57. Application.CutCopyMode = False
  58.  
  59. Application.ScreenUpdating = True
  60.  
  61. End Sub

以上是关于';将多个工作表中的数据附加到单个工作表宏中的主要内容,如果未能解决你的问题,请参考以下文章

如何将单个工作表中的多行(在 excel 中)转换为多个 CSV 文件

将许多 Excel 工作簿和工作表中的数据导入单个工作簿/表格

保留工作表宏以链接具有工作表名称更改的单元格

在 R 中拆分大型数据框并输出到单个 Excel 工作簿中的单独工作表中

python将多个excel中的所有工作表附加到pandas数据框中的有效方法

【Tableau】Tableau中的数据关联(联接)