gibt es bei Excel die Möglichkeit Kommentare mit dem Verfassungsdatum zu versehen?
Gruss
Peter
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.DisplayCommentIndicator = xlNoIndicator
If Target.Column = 3 And ActiveCell.Offset(-1, 0) "" Then
With ActiveCell.Offset(-1, 0)
.ClearComments
.AddComment.Shape.TextFrame.AutoSize = True
' Formatierung des Kommentarfeldes
With .Comment.Shape.TextFrame.Characters.Font
.Name = "Arial"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
' Eintrag des Textes und den Kommentar unsichtbar schalten
.Comment.Text Text:=Format(Now(), "dd.mm.yyyy" & ", " & "hh:mm")
.Comment.Visible = False
End With
End If
End Sub