DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub CommentAddOrEditTNR()
Dim cmt As Comment
For Each hcr In Cells.SpecialCells(xlCellTypeComments).Cells
Set cmt = hcr.Comment
If Not cmt Is Nothing Then
With cmt.Shape.TextFrame.Characters.Font
.Name = "Times New Roman"
.Size = 11
.Bold = False
.ColorIndex = 3 'Rengi buradan ayarlayın.
End With
End If
Next
End Sub
Sub Acvarsarenklendir()
Dim Alnac As Range
On Error Resume Next
Set Alnac = Range("A1").SpecialCells(xlCellTypeComments)
On Error GoTo 0
If Not Alnac Is Nothing Then
Alnac.Interior.ColorIndex = 6
End If
End Sub