matthias-1982

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
Auf Facebook teilen
Auf X (Twitter) teilen
Auf Reddit teilen
Auf Linkedin teilen

Content-ID: 16444

Url: https://administrator.de/forum/excel-16444.html

Ausgedruckt am: 25.04.2025 um 12:04 Uhr

16568
16568 30.11.2005 um 20:31:42 Uhr
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.