【发布时间】:2015-03-26 03:19:56
【问题描述】:
我有一本包含 8 个工作表的工作簿。
我为每个工作表分配了一个宏。
我想一键从一个工作表中运行所有 8 个宏(通过单击一个按钮,运行所有 8 个宏)。
如何执行此操作?
更新这是我的代码
Sub cf1()
Application.Run "v1"
Application.Run "a1"
Application.Run "t1"
Application.Run "p1"
Application.Run "k1"
Application.Run "k2"
Application.Run "k3"
Application.Run "m1"
End Sub
Sub v1()
End Sub
.
.
.
Sub m1()
End sub
【问题讨论】: