Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何强制 Excel VBA 中的一个范围说(“a1:z60”)仅打印来自(“a1:z40”)的两页页面(1)和来自(“a41:z60”)的页面(2)。
另外,我如何强制相同的范围说(“a1:z60”)仅打印来自(“a1:p60”)的两页页面(1)和来自(“q1:z60”)的页面(2)。
此外,我希望我的两页中的每一页都尽可能地放大(在给定条件下)。
非常感谢
要在页面上打印选择:
Range("A1:E44").Select With ActiveSheet.PageSetup .FitToPagesWide = 1 .FitToPagesTall = 1 End With Selection.PrintOut Copies:=1
将范围更改为您需要的任何范围,并将页面宽度和高度更改为您希望页面的显示方式