Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经创建了一个宏和一个按钮,但我看不到在哪里编辑按钮设置来调用宏。我正在使用 Excel 2003。
如果您使用过表单控件。将按钮添加到工作表后,将立即出现分配宏的机会。或者,如果按钮已经在工作表上,您可以右键单击它并选择分配宏。
如果您使用过 ActiveXControl,请右键单击该按钮并选择查看代码。这将打开 VBE
Private Sub myCommandButtonName_Click() End Sub
从这个子调用你的宏像这样......
Private Sub myCommandButtonName_Click() Call myMacro End Sub