在Excel中用VBA实现复制操作

1、实现单元格区域复制
在这里插入图片描述2、Excel中有中文表名时实现区域复制
在这里插入图片描述3、PasteSpecial 用法
Sub my()
Sheets(“Sheet1”).Range(“D21”).PasteSpecial (Paste)
End Sub

猜你喜欢

转载自blog.csdn.net/LFfootprint/article/details/84890549