Bestimmen Sie, welche Symbolleistenschaltfläche, die ein Makro mit VBA in Microsoft Excel gestartet
Lassen Sie die Makros selbst bestimmen, welche CommandBar-Schaltfläche sie gestartet hat.
Wenn Sie das folgende Makro an mehrere CommandBar-Schaltflächen anhängen, zeigt das Meldungsfeld unterschiedliche Inhalte an:
Sub DummyMacro() If Application.CommandBars.ActionControl Is Nothing Then ' the macro was not started from a commandbar button MsgBox "This could be your macro running!", vbInformation, _ "This macro was not started from a CommandBar button" Else ' the macro was started from a commandbar button MsgBox "This could be your macro running!", vbInformation, _ "This macro was started from this CommandBar button: " & _ Application.CommandBars.ActionControl.Caption End If End Sub