是否有任何方法/实践可以在工作簿开放期间放置我的代码(一种构造函数方法)?
我需要在用户准备好查看所有表格之前做一些事情
答案 0 :(得分:2)
Private Sub Workbook_Open()
Msgbox "Welcome to ANALYSIS TABS"
End Sub
http://analysistabs.com/excel-vba/run-macro-automatically-opening-workbook/
答案 1 :(得分:2)
我在开场时不知道怎么做,但我知道有一种方法是workbook_open
。如果你在代码之上加上Application.ScreenUpdating = False
语句,你就可以得到你想要的东西。
Private Sub Workbook_Open()
Application.ScreenUpdating = False
'Some codes here
End Sub