在多张纸上运行代码
我有这个代码。
Const pw As String = "password" '<-change password here
ActiveSheet.Unprotect pw
Range("B7").QueryTable.Refresh BackgroundQuery:=False
ActiveSheet.Protect pw
它取消保护、刷新数据并重新保护。目前,它通过活动工作表上的按钮运行。我希望按钮对两张不同的工作表执行相同的操作。
I have this code.
Const pw As String = "password" '<-change password here
ActiveSheet.Unprotect pw
Range("B7").QueryTable.Refresh BackgroundQuery:=False
ActiveSheet.Protect pw
It unprotects, refreshes data and reprotects. Currently it runs from a button on the active sheet. I want the button to do the same thing for two different sheets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面是一个示例,说明如何设置要浏览的工作表数组以及如何使用 With 语句来获得更简洁的代码。如果您想对所有工作表执行此操作,您可以简单地说“对于工作表中的每个工作表”,无需声明工作表数组。 :)
Here's an example of how you can set up an array of sheets to go through and using the With statement for cleaner code. If you want to do this for all sheets, you can simple say "For Each sheet in Worksheets" with no need to declare an array of sheets. :)
您正在寻找
ActiveWorkbook.Sheets(someName)
。You're looking for
ActiveWorkbook.Sheets(someName)
.