There are several ways to run a macro (macro: An action or a set of actions that you can use to automate tasks. Macros are recorded in the Visual Basic for Applications programming language.). You can always run a macro by using the menu command. Depending on how a macro is assigned to run, you might also be able to run it by pressing a CTRL combination shortcut key (shortcut key: A function key or key combination, such as F5 or CTRL+A, that you use to carry out a menu command. In contrast, an access key is a key combination, such as ALT+F, that moves the focus to a menu, command, or control.), or by clicking a toolbar button or an area on an object, graphic, or control. In addition, you can run a macro automatically when you open a workbook. Note When you set the macro security level in Microsoft Office Excel to Disable all macros without notification, Excel will run only those macros that are digitally signed or stored in a trusted location, such as the Excel startup folder. If the macro that you want to run is not digitally signed or located in a trusted location, you can temporarily change the security level that enables all macros. - If the Developer tab is not available, do the following to display it:
- Click the Microsoft Office Button , and then click Excel Options.
- In the Popular category, under Top options for working with Excel, select the Show Developer tab in the Ribbon check box, and then click OK.
Note The Ribbon is a component of the Microsoft Office Fluent user interface.
- To set the security level temporarily to enable all macros, do the following:
- On the Developer tab, in the Code group, click Macro Security.
- In the Macro Settings category, under Macro Settings, click Enable all macros (not recommended, potentially dangerous code can run), and then click OK.
Note To help prevent potentially dangerous code from running, we recommend that you return to any one of the settings that disable all macros after you finish working with macros. - Open the workbook that contains the macro.
- On the Developer tab, in the Code group, click Macros.
- In the Macro name box, click the macro that you want to run.
- Do one of the following:
Run a macro by pressing a CTRL combination shortcut key- If the Developer tab is not available, do the following to display it:
- Click the Microsoft Office Button , and then click Excel Options.
- In the Popular category, under Top options for working with Excel, select the Show Developer tab in the Ribbon check box, and then click OK.
Note The Ribbon is a component of the Microsoft Office Fluent user interface.
- On the Developer tab, in the Code group, click Macros.
- In the Macro name box, click the macro that you want to assign to a CTRL combination shortcut key.
- Click Options.
- In the Shortcut key box, type any lowercase letter or uppercase letter that you want to use.
Note The shortcut key will override any equivalent default Excel shortcut key while the workbook that contains the macro is open. For a list of CTRL combination shortcut keys that are already assigned in Excel. - In the Description box, type a description of the macro.
- Click OK, and then click Cancel.
Run a macro by clicking a button on the Quick Access Toolbar- Click the Microsoft Office Button , and then click Excel Options.
- Click Customize, and then in the Choose commands from list, select Macros.
- In the list, click the macro that you created, and then click Add.
- To change the button image of the macro, select the macro in the box where it was added, and then click Modify.
- Under Symbol, click the button image that you want to use.
- To change the name of the macro that is displayed when you rest the pointer on the button, in the Display name box, type the name that you want to use.
- Click OK to add the macro button to the Quick Access Toolbar.
- On the Quick Access Toolbar, click the macro button.
Run a macro by clicking an area on a graphic object- In the worksheet, select an existing graphic object, such as a picture, clip art, shape, or SmartArt.
- To create a hot spot on the existing object, on the Insert tab, in the Illustrations group, click Shapes, select the shape that you want to use, and then draw that shape on the existing object.
- Right-click the hot spot that you created, and then click Assign Macro on the shortcut menu.
- Do one of the following:
- Click OK.
- In the worksheet, select the hot spot.
Tip This displays the Drawing Tools, adding a Format tab. - On the Format tab, in the Shape Styles group, do the following:
- Click the arrow next to Shape Fill, and then click No Fill.
- Click the arrow next to Shape Outline, and then click No Outline.
Run a macro automatically upon opening a workbookIf you record a macro and save it with the name "Auto_Open," the macro will run whenever you open the workbook that contains the macro. Another way to automatically run a macro when you open a workbook is to write a Microsoft Visual Basic for Applications (VBA) procedure in the Open event of the workbook by using the Visual Basic Editor (Visual Basic Editor: An environment in which you write new and edit existing Visual Basic for Applications code and procedures. The Visual Basic Editor contains a complete debugging toolset for finding syntax, run-time, and logic problems in your code.). The Open event is a built-in workbook event that runs its macro code every time that that you open the workbook. Create an Auto_Open macro- If the Developer tab is not available, do the following to display it:
- Click the Microsoft Office Button , and then click Excel Options.
- In the Popular category, under Working with Excel and other Office applications, select the Developer tools check box, and then click OK.
- To set the security level temporarily to enable all macros, do the following:
- On the Developer tab, in the Code group, click Macro Security.
- In the Macro Settings category, under Macro Settings, click Enable all macros (not recommended, potentially dangerous code can run), and then click OK.
Note To help prevent potentially dangerous code from running, we recommend that you return to any one of the settings that disable all macros after you finish working with macros. - If you want to save the macro with a particular workbook, open that workbook first.
- On the Developer tab, in the Code group, click Record Macro.
- In the Macro name box, type Auto_Open.
- In the Store macro in list, select the workbook where you want to store the macro.
Tip If you want a macro to be available whenever you use Excel, select Personal Macro Workbook. When you select Personal Macro Workbook, Excel creates a hidden personal macro workbook (Personal.xlsb), if it does not already exist, and saves the macro in this workbook. In Windows Vista, this workbook is saved in the C:\Users\user name\AppData\Local\Microsoft\Excel\XLStart folder. In Microsoft Windows XP, this workbook is saved in the C:\Documents and Settings\user name\Application Data\Microsoft\Excel\XLStart folder. Workbooks in the XLStart folder are opened automatically whenever Excel starts. If you want a macro in the personal macro workbook to be run automatically in another workbook, you must also save that workbook in the XLStart folder so that both workbooks are opened when Excel starts. - Click OK, and then perform the actions that you want to record.
- On the Developer tab, in the Code group, click Stop Recording .
Tip You can also click Stop Recording on the left side of the status bar.
Notes - If you chose to save the macro in This Workbook or New Workbook in step 6, save or move the workbook into one of the XLStart folders.
- Recording an Auto_Open macro has the following limitations:
- If you want Excel to start without running an Auto_Open macro, hold down the SHIFT key when you start Excel.
Create a VBA procedure for the Open event of a workbookThe following example uses the Open event to run a macro when you open the workbook. - If the Developer tab is not available, do the following to display it:
- Click the Microsoft Office Button , and then click Excel Options.
- In the Popular category, under Working with Excel and other Office applications, select the Developer tools check box, and then click OK.
- To set the security level temporarily to enable all macros, do the following:
- On the Developer tab, in the Code group, click Macro Security.
- In the Macro Settings category, under Macro Settings, click Enable all macros (not recommended, potentially dangerous code can run), and then click OK.
Note To help prevent potentially dangerous code from running, we recommend that you return to any one of the settings that disable all macros after you finish working with macros. - Save and close all open workbooks.
- Open the workbook where you want to add the macro, or create a new workbook.
- On the Developer tab, in the Code group, click Visual Basic.
- In the Project Explorer window, right-click the ThisWorkbook object, and then click View Code.
Tip In the Project Explorer window is not visible, on the View menu, click Project Explorer. - In the Object list above the Code window, select Workbook.
This automatically creates an empty procedure for the Open event such as this: Private Sub Workbook_Open() End Sub - Add the following lines of code to the procedure:
Private Sub Workbook_Open() MsgBox Date Worksheets("Sheet1").Range("A1").Value = Date End Sub - Switch to Excel and save the workbook as a macro-enabled workbook (.xlsm).
- Close and reopen the workbook. When you open the file again, Excel runs the Workbook_Open procedure, which displays today's date in a message box.
- Click OK in the message box.
Note that cell A1 on Sheet1 also contains the date as a result of running the Workbook_Open procedure
|