Return to VBA Code Examples

VBA – Modify the Right-Click Menu to Call a Macro

Written by

Editorial Team

Reviewed by

Steve Rynearson

Last updated on February 7, 2018


Right-Click to Call a Macro

Here is some code that will allow a user to select your macro from the default menu that appears after they right click a cell.

1. Put the following code in the ThisWorkbook code window



Private Sub Workbook_Open()



Dim MyMenu As Object

    

Set MyMenu = Application.ShortcutMenus(xlWorksheetCell) _

    .MenuItems.AddMenu("This is my Custom Menu", 1)

     

With MyMenu.MenuItems

    .Add "MyMacro1", "MyMacro1", , 1, , ""

    .Add "MyMacro2", "MyMacro2", , 2, , ""

End With

      

Set MyMenu = Nothing



End Sub

2. Put the following code in a module



Public Sub mymacro1()

MsgBox "Macro1 from a right click menu"

End Sub



Public Sub mymacro2()

MsgBox "Macro2 from a right click menu"

End Sub

3. Close your workbook and re-open!

VBA Coding Made Easy

Stop searching for VBA code online. Learn more about AutoMacro – A VBA Code Builder that allows beginners to code procedures from scratch with minimal coding knowledge and with many time-saving features for all users!

alt text

Learn More!


<<Return to VBA Examples

vba-free-addin

VBA Code Examples Add-in

Easily access all of the code examples found on our site.

Simply navigate to the menu, click, and the code will be inserted directly into your module. .xlam add-in.

(No installation required!)

Free Download

Return to VBA Code Examples