matthias-1982
Goto Top

Excel

Hallo
Ich habe schnell eine Frage. Gibt es eine zentrale Einstellung Möglichkeit für Kommentar. Sodass die Schrift und Grösse gleich ist für alle Zellen.

Gruss
Matthias

Content-Key: 16444

Url: https://administrator.de/contentid/16444

Printed on: April 20, 2024 at 03:04 o'clock

Mitglied: 16568
16568 Nov 30, 2005 at 19:31:42 (UTC)
Goto Top
Jein.

Ich verwende für diese Funktion ein Makro.

[code]

Sub FormatComment()
With ActiveCell
If .Comment Is Nothing Then
MsgBox "Diese Zelle besitzt keinen Kommentar"
Else
.Comment:Shape.Fill.ForeColor.RGB = RGB(255, 0, 0)
With .Coment.Shape.TextFrame.Characters.Font
.Name = "Courier"
.Size = 12
.ColorIndex = 6
.Italic = True
End With
EndIf
End With
End Sub

Und dann das ganze einfach auf die ganze Tabelle oder das Excel-Sheet anwenden.