用于激活工作表的 Vba 按钮
我正在尝试为后台视图上的按钮编写回调。
我想选择某个工作表并将其显示给用户。我想到了 sheet("sheetName").activate
。这是选择工作表 sheetName,但 Excel 仍保留在后台视图中。
我的问题是如何实际显示该工作表,即使其可见?我需要能够隐藏后台视图并转到“文档视图”...
问候
I am trying to write the callback for a button on the backstage view.
I want to select a certain worksheet and show it to the user. I thought aboutsheet("sheetName").activate
. This is selecting the sheet sheetName, but Excel stays in backstage view.
My question is how can I actually show the sheet, i.e. make it visible? I need to be able to hide backstage view and go to "document view"...
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将属性 isDefinitive="true" 添加到功能区后台按钮 xml 中。单击按钮后,它将关闭后台视图,并切换回选择上一个选项卡的主视图。
Add the attribute isDefinitive="true" to the ribbon backstage button xml. It will close the backstage view after the button is clicked and switch back to the main view with the previous tab selected.