Excel 2010 中的默认图表大小
是否有一种简单的方法可以为 Excel 2010 中创建的所有新图表设置默认大小?
我需要它们对于办公室的一群用户来说是 10,52 厘米,而且我似乎无法找到如何在不使用宏的情况下做到这一点。
Is there an easy way to set a default size for all new charts created in Excel 2010?
I need them to be like 10,52cm for a bunch of users at the office, and I can't seem to find how to do this without using macros.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然您无法设置默认图表大小,但您可以添加事件处理程序来修改任何新图表(但需要 vba 代码)
(这是 Excel 2010 的新事件)
将其放入工作簿模块中:
注意:这假设您可以将代码添加到要添加到的工作簿图表中。如果您愿意,可以创建一个包含处理所有工作簿事件的代码的外接程序。这将消除在所有工作簿中都包含此代码的需要。
While you cant set the default chart size you can add a Event handler to modify any new charts (needs vba code though)
(This is a new event to Excel 2010)
Put this in the Workbook module:
Note: this assumes you can add code to the workbook charts will be added to. If you prefer, you can create an addin that includes code to handle all workbook events. This would remove the need to have this code in all workbooks.