Olá amigo, a macro é essa…
Rem Attribute VBA_ModuleType=VBAModule
Option VBASupport 1
Sub Menu()
Application.CommandBars("Cell").Reset
Dim cbc As CommandBarControl
For Each cbc In Application.CommandBars("cell").Controls
cbc.Visible = False
Next cbc
Application.CommandBars("Cell").Controls.Add(Type:=msoControlPopup).Caption = "Importar"
With Application.CommandBars("Cell").Controls("Importar")
x = "Folha"
.Controls.Add(Type:=msoControlButton).Caption = x
.Controls(x).OnAction = "'Importar_Folha_INSS_FGTS.Principal """ & x & """'"
.Controls(x).FaceId = 144
x = "INSS_FGTS"
.Controls.Add(Type:=msoControlButton).Caption = x
.Controls(x).OnAction = "'Importar_Folha_INSS_FGTS.Principal """ & x & """'"
.Controls(x).FaceId = 144
x = "Provisao_Decimo_Ferias"
.Controls.Add(Type:=msoControlButton).Caption = x
.Controls(x).OnAction = "Importar_Provisao_Decimo_Ferias.Principal"
.Controls(x).FaceId = 144
End With
Application.CommandBars("Cell").ShowPopup
Application.CommandBars("Cell").Reset
End Sub