running a macro from an add-in

后端 未结 5 834
挽巷
挽巷 2020-12-09 22:15

i have an add-in called book1. inside the addin there is a module called module1 which has a sub called addin1

i would like to run the macro addin1 from a different

5条回答
  •  隐瞒了意图╮
    2020-12-09 22:45

    (Assuming Office 2007) Here's an example:

    1- Open a new Workbook.
    2- Add a macro that contains the code MsgBox("Add-In")
    3- Save as xlam file.
    4- Open new Workbook.
    5- Click Office Button -> Excel Options
    6- Click the Add-Ins tab on the left.
    7- At the bottom, next to the "Manage" dropdown, select "Excel Add-Ins" and click Go.
    8- Click Browse and navigate to your xlam file.
    9- Ensure the box next to your file is checked and click Ok.
    10- Click the Office Button -> Excel Options.
    11- Click Customize Tab.
    12- Select Macros in the "Choose Commands From Dropdown."
    13- Double click your AddIn and now a button will appear on the Quick Access Toolbar.
    14- Click the button and your message box will now show.

提交回复
热议问题