Hallo Experten,
ich bins nochmal
ich habe per Makro eine Exceltabelle und ein Button programmiert. Wenn ich auf das Button klicke, kommt diese Fehlermeldung: Makro ‚message‘ nicht gefunden.
------------Makro für Button-------------------
With Selection
dWidth = .Cells(.Cells.Count).Left - _
.Cells(1).Left + .Cells(.Cells.Count).Width
dHeight = .Cells(.Cells.Count).Top - _
.Cells(1).Top + .Cells(.Cells.Count).RowHeight
Set btn = xlWb.Worksheets(„tabelle1“).Buttons.Add(.Cells(1).Left, _
.Cells(1).Top, dWidth, dHeight)
End With
btn.Caption = „Aufruf“
btn.OnAction = „message“
-------------------Prozedur message--------------
sub message()
Msgbox = „hallo“
End
VIELEN DANK
WillsWissen