Code:
Sub Add_Menu ()
With Application.CommandBars("cell")
.Reset
With .Controls.Add (Tpe:=msControlButton, temporary:=False)
.Caption = "Menu 1"
.OnAction = "Men1"
End With
End with
End Sub
Is it possible to add sub menu using VBA?