工作簿打开期间的VBA代码

时间:2016-05-03 10:10:03

标签: excel vba

是否有任何方法/实践可以在工作簿开放期间放置我的代码(一种构造函数方法)?

我需要在用户准备好查看所有表格之前做一些事情

2 个答案:

答案 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