How to run macro in Excel and create your own macro button

In this tutorial, we'll cover many different ways to run a macro in Excel - from the ribbon and VB Editor, with a custom keyboard shortcut, and by creating your own macro button.

Though running an Excel macro is a simple thing for experienced users, it might not be immediately obvious to beginners. In this article, you will learn several methods to run macros, some of which may completely change your way of interacting with Excel workbooks.

How to run a macro from Excel ribbon

One of the fastest ways to execute VBA in Excel is to run a macro from the Developer tab. If you have never dealt with VBA code before, you may need to activate the Developer tab first. And then, do the following:

  1. On the Developer tab, in the Code group, click Macros. Or press the Alt + F8 shortcut. Running a macro from the Developer tab
  2. In the dialog box that shows up, select the macro of interest, and then click Run. Select the macro to run.

Tip. If the Developer tab is not added to your Excel ribbon, press Alt + F8 to open the Macro dialog.

Run a macro with custom keyboard shortcut

If you execute a certain macro on a regular basis, you can assign a shortcut key to it. A shortcut can be added while recording a new macro and to an existing one. For this, carry out these steps:

  1. On the Developer tab, in the Code group, click Macros.
  2. In the Macro dialog box, click Options. Click Options to edit the macro parameters.
  3. The Macro Options dialog box will appear. In the Shortcut key box, type any uppercase or lowercase letter that you want to use for the shortcut, and then click OK to save the changes.
    • For lowercase letters, the shortcut is Ctrl + letter.
    • For uppercase letters, the shortcut is Ctrl + Shift + letter. Assign a shortcut to a macro.
  4. Close the Macro dialog box.

Tip. It is recommended to always use uppercase key combinations for macros (Ctrl + Shift + letter) not to override the default Excel shortcuts. For example, if you assign Ctrl + f to a macro, you will lose the ability to call the Find and Replace dialog.

Once the shortcut is assigned, simply press that key combination to run your macro.

How to run macro from VBA Editor

If you aim to become an Excel pro, then you should definitely know how to start a macro not only from Excel, but also from the Visual Basic Editor. The good news is that it's a lot easier than you might expect :)

  1. Press Alt + F11 to launch the Visual Basic Editor.
  2. In the Project Explorer window on the left, double-click the module containing your macro to open it.
  3. In the Code window on the right, you will see all the macros listed in the module. Place the cursor anywhere within the macro you want to execute and do one of the following:
    • On the menu bar, click Run > Run Sub/UserForm.
    • On the toolbar, click the Run Macro button (green triangle).

    Alternatively, you can use one of the following shortcuts:

    • Press F5 to run the entire code.
    • Press F8 to run each code line separately. This is very useful when testing and debugging macros.

    Running a macro from the VBA Editor

Tip. If you like operating Excel from you keyboard, this tutorial may come in handy: 30 most useful Excel keyboard shortcuts.

How to create a macro button in Excel

The traditional ways of running macros are not hard, but still might present a problem if you are sharing a workbook with someone who has no experience with VBA - they simply won't know where to look! To make running a macro really easy and intuitive for anyone, create your own macro button.

  1. On the Developer tab, in the Controls group, click Insert, and select Button under From Controls. Inserting a button in a worksheet
  2. Click anywhere in the worksheet. This will open the Assign Macro dialogue box.
  3. Select the macro you'd like to assign to the button and click on OK. Assign a macro to a button in Excel.
  4. A button gets inserted in the worksheet. To change the button text, right-click the button and select Edit Text from the context menu. Changing the text of the macro button
  5. Delete the default text such as Button 1 and type your own one. Optionally, you can format the text bold or italic. Type text for a macro button.
  6. If the text does not fit in the button, make the button control bigger or smaller by dragging the sizing handles. When finished, click anywhere on the sheet to exit the edit mode.

And now, you can run the macro by clicking its button. The macro we've assigned, formats the selected cells like shown in the screenshot below: Excel button to run macro

Tip. You can also assign a macro to an existing button or other Form controls such as spin buttons or scrollbars. For this, right-click the control inserted in your worksheet and choose Assign Macro from the pop-up menu.

Create a macro button from a graphic object

Regrettably, it is not possible to customize the appearance of button controls, because of which the button we created a moment ago does not look very nice. To make a really beautiful Excel macro button, you can use shapes, icons, images, WordArt and other objects.

As an example, I'll show you how you can run a macro by clicking a shape:

  1. On the Insert tab, in the Illustrations group, click Shapes and select the desired shape type, e.g. rectangle with rounded corners: Inserting a shape
  2. In your worksheet, click where you want to insert the shape object.
  3. Format your shape-button the way you want. For example, you can change the fill and outline colors or use one of the predefined styles on the Shape Format tab. To add some text to the shape, simply double-click it and start typing.
  4. To link a macro to the shape, right-click the shape object, choose Assign Macro…, then select the desired macro and click OK. Assigning a macro to the shape

Now you have a shape that looks like a button and runs the assigned macro whenever you click on it: Run a macro by clicking on a shape

How to add a macro button to Quick Access Toolbar

The macro button inserted in a worksheet looks good, but adding a button to each and every sheet is time-consuming. To make your favorite macro accessible from anywhere, add it to the Quick Access Toolbar. Here's how:

  1. Right-click the Quick Access Toolbar and choose More Commands… from the context menu.
  2. In the Choose commands from list, select Macros.
  3. In the list of macros, choose the one you want to assign to the button, and click Add. This will move the selected macro to the list of the Quick Access Toolbar buttons on the right. Adding a macro button to Quick Access Toolbar

    At this point, you can click OK to save the changes or do a couple more customizations described below.

  4. If you find that the icon added by Microsoft is not suitable for your macro, click Modify to replace the default icon with another one. Modify the macro button.
  5. In the Modify button dialog box that appears, select an icon for your macro button. Optionally, you can also change the Display name to make it more user-friendly. Unlike the macro name, the button name can contain spaces. Changing the icon and display name of the macro button
  6. Click OK twice to close both dialog windows.

Done! Now you have your own Excel button to run macro: Quick Access Toolbar button to run a macro.

How to put a macro button on Excel ribbon

In case you have a few frequently used macros in your Excel toolbox, you may find it convenient to have a custom ribbon group, say My Macros, and add all popular macros to that group as buttons.

First, add a custom group to an existing tab or your own tab. For the detailed instructions, please see:

And then, add a macro button to your custom group by performing these steps:

  1. Right-click the ribbon, and then click Customize the Ribbon.
  2. In the dialog box that appears, do the following:
    • In the list tabs on the right, select your custom group.
    • In the Choose commands from list on the left, select Macros.
    • In the list of macros, choose the one you wish to add to the group.
    • Click the Add button.

    For this example, I've created a new tab named Macros and a custom group named Formatting Macros. In the screenshot below, we are adding the Format_Headers macro to that group. Adding a macro to a custom ribbon group

  3. The macro is now added to the custom ribbon group. To give your macro button a friendlier name, select it and click Rename: The macro is added to the custom ribbon group.
  4. In the Rename dialog box, type any name you want in the Display name box (spaces are allowed in button names) and choose an icon for your macro button. When done, click OK. Rename the macro button and select the icon for it.
  5. Click OK to save your changes and close the main dialog box.

As an example, I've put three macro buttons to my Excel ribbon and can now run any of them with a button click: Three macro buttons are added to the Excel ribbon.

How to run a macro on opening a workbook

Sometimes you may want to run a macro automatically on opening a workbook, for example, to display some message, run script or clear a certain range. This can be done in two ways.

Run macro automatically by using Workbook_Open event

Below are the steps to create a macro that automatically runs whenever you open a specific workbook:

  1. Open the workbook in which you want the macro to be executed.
  2. Press Alt + F11 to open the Visual Basic Editor.
  3. In the Project Explorer, double click ThisWorkbook to open its Code window.
  4. In the Object list above the Code window, select Workbook. This creates an empty procedure for the Open event to which you can add your own code like shown in the screenshot below.
Run a macro on opening a workbook

For example, the following code will display a welcome message each time the workbook is opened:

Private Sub Workbook_Open() MsgBox "Welcome to Monthly Report!" End Sub

Trigger macro on workbook opening with Auto_Open event

Another way to run a macro automatically on workbook opening is by using the Auto_Open event. Unlike the Workbook_Open event, Auto_Open() should sit in a standard code module, not in ThisWorkbook.

Here are the steps to create such a macro:

  1. In the Project Explorer, right-click Modules, and then click Insert > Module.
  2. In the Code window, write the following code:
A macro runs automatically whenever the workbook is opened.

Here's an example of the real-life code that displays a message box on workbook opening:

Sub Auto_Open() MsgBox "Welcome to Monthly Report!" End Sub

Note! The Auto_Open event is deprecated and available for backwards compatibility. In most cases, it can be replaced with the Workbook_Open event. For more information, please see Workbook_Open vs. Auto_Open.

Whichever event you use, your macro will run automatically every time you open the Excel file containing the code. In our case, the following message box is displayed: The message box is displayed every time you open the workbook.

Now that you know lots of ways to run a macro in Excel, you just need to choose the one best suited for your needs. I thank you for reading and hope to see you on our blog next week!

15 comments

  1. I need my Macro to do several things, use an Ablebits feature, and then do several more things. But I can't seem to get it to record the Ablebits step.

    Is there a way with VBA to include the Ablebits steps? Or, even better, a way to turn on recording them?

  2. I have created some macro buttons on Excel Quick access toolbar. But if I move my Macro.xlam to other folder (change path), although I have already loaded Macro.xlam (by Developer/Excel Add-in), the macro buttons could not run.
    How could I do that only load the Macro.xlam and run the macro buttons, not depend on the file location?
    Thank you.

    • Hi! In order for Excel to find and automatically load your XLAM file, you must tell Excel where the file is located. If you have moved the file to another location, load it again by using the Developer menu.

  3. I wrote a macro to hide certain rows and columns, print a specific selection and then unhide the pertinent columns and save the workbook. All this is attached to a button.
    When it prints I get blank pages

    Range("b1:F117").Select
    Selection.PrintOut Copies:=1, Collate:=True

    Any suggestion regarding what I am doing wrong?

    • Your request goes beyond the advice we provide on this blog. If you have a specific question about the operation of a function or formula, I will try to answer it.

  4. Is it possible to assign a macro button to a toolbar that can then be opened on any pc? It seems that when I forward my document with the macro buttons added to the toolbar, they disappear when the new user opens the document however the functions are still seen as listed macros in the document.

    Please help

  5. I need to run a macro to export a document to PDF, but I need to save to a different location each time I run it. Is this a possibility? I would ideally like to link this macro to a button.

  6. How do I format the TEXT in a macro button, say BOLD, or FONT 14,,,etc

    • Right click/ edit text/ then just make the changes you want

  7. Hi Svetlana!

    Thank you for this useful post. I created a macro spreadsheet with keyboard shortcuts. I would like to ask if it is possible to convert those shortcuts into buttons in ribbon? And then have those shortcuts removed? ( I want to share the sheet with others, but don't want them to accidentally press those keys)

    thanks!

    Victor

  8. Yes, I found :)

  9. Good Afternoon Svetlana,

    I am trying to write two separate if statements with a nested LOOKUP so the responses in the relating cells don't return with a column heading nor an #N/A reply.

    The first LOOKUP statement is as follows:
    =LOOKUP(2,1/($O$6:$O$19=Q2),$M$6:$M$19)

    If the response is an amount, it lists the last amount, but if there isn't an amount -or the range is blank, I want it to reply with 0.00

    The second LOOKUP statement is as follows:
    =LOOKUP(2,1/(K:K""),K:K)

    The response is a date, but if there has not been a payment in the affecting range, I want it to reply with "No Payment Received"

    Please help.
    Regards,
    Roger

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)