Since I wanted the Right-click item to appear in the entirety of the workbook I used Bob Phillips code as follows
Private Sub Workbook_Open()
With Application.CommandBars("Cell")
With .Controls.Add(Type:=msoControlButton)
.BeginGroup = True
.Caption = "Dashboard"
.OnAction = "Another"
End With
End With
End Sub
To remove the item after excel closes, so the items don't continually build up, I used the "remove it" segment of code as follows
Private Sub Workbook_BeforeClose(Cancel As Boolean)
With Application.CommandBars("Cell")
.Controls("Dashboard").Delete
End With
End Sub
Bookmarks