![](http://tiebapic.baidu.com/forum/w%3D580/sign=e406ea5e8413b07ebdbd50003cd69113/e8d73a87e950352ad9a848774443fbf2b3118bac.jpg?tbpicau=2025-03-01-05_9a6c497a06369bc7f2da0d8b79bcbb98)
Sub 合并当前工作簿下的所有工作表()
Application.ScreenUpdating = False
For j = 1 To Sheets.Count
If Sheets(j).Name <> ActiveSheet.Name Then
X = Range("A65536").End(xlUp).Row + 1
Sheets(j).UsedRange.Copy Cells(X, 1)
End If
Next
Range("B1").Select
Application.ScreenUpdating = True
MsgBox "当前工作簿下的全部工作表已经合并完毕!", vbInformation, "提示"
End Sub