DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Sub BİÇİM_1()
With Selection
.Interior.ColorIndex = 4
.Interior.Pattern = xlSolid
.Borders.LineStyle = xlDouble
.Borders.Weight = xlThick
.Borders.ColorIndex = 3
.Font.Bold = True
.Font.Name = "Arial"
.Font.Size = 12
End With
End Sub
Sub BİÇİM_2()
With Selection
.Interior.ColorIndex = 6
.Interior.Pattern = xlSolid
.Borders.LineStyle = xlContinuous
.Borders.Weight = xlThin
.Borders.ColorIndex = xlAutomatic
.Font.ColorIndex = 3
.Font.Italic = True
.Font.Name = "Verdana"
.Font.Size = 10
.Font.ColorIndex = 3
End With
End Sub
Option Explicit
Sub RENK_KODU()
MsgBox "Renk kodu ; " & ActiveCell.Interior.ColorIndex
End Sub