在OS X上将Zoom默认设置为125%Excel 2011


1

我不喜欢小字体。因此,我希望OS X Lion上Excel 2011中所有电子表格的默认缩放比例为125%。有没有办法告诉Excel以125%的缩放水平打开所有电子表格?

Answers:


0

说明了如何进行。简而言之,您必须创建一个新模板。


0

我这样做了,它适用于新工作簿

Sub auto_open()
'
' SetDefaultZoomto125 Macro
' sets default zoom to 125% on start up of XL

Workbooks.Add
ActiveWorkbook.Activate
ActiveWindow.Zoom = 125
End Sub

希望对您有帮助。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.