Hello, I'm trying to add a button on the Standard command bar in Excel, I am successful in doing so but when I try assigning a macro to the button the program fails to execute. Can any one please help?
Application.CommandBars("Standard").Controls.Add _
Type:=msoControlButton, ID:=2950, Before:=7
Set mybar = CommandBars("Standard")
Set myControl = mybar.Controls
With myControl
.FaceId = 19
.OnAction = "Import"
End With
Application.CommandBars("Standard").Controls.Add _
Type:=msoControlButton, ID:=2950, Before:=7
Set mybar = CommandBars("Standard")
Set myControl = mybar.Controls
With myControl
.FaceId = 19
.OnAction = "Import"
End With