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
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
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 16444
Url: https://administrator.de/forum/excel-16444.html
Ausgedruckt am: 24.12.2024 um 03:12 Uhr
1 Kommentar
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.
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.