我在 Excel 中有一个打印输出按钮,该按钮分配给以下代码:
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Sheets(Array("Cover", "1", "1-1", "2", "3", "4")).PrintOut , , 1
Sheet1.PrintOut , , 1 'use this method to print all together at the end instead printing individually.
Application.ScreenUpdating = True
End Sub
但是,它开始打印 100 个随机页面,每页有 3-10 个值,而不是打印工作表(这实际上没有意义)。在所有工作表上设置和检查打印范围,我真的不明白错误来自哪里。
有任何想法吗?
预先感谢!