DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub İKİLİ_KARAKTER_RENKLENDİR()
Range("A:A").Font.ColorIndex = False
Son = Cells(Rows.Count, 1).End(3).Row
For X = 1 To Son
Renk = 3
For Y = 1 To Len(Cells(X, 1)) Step 2
Cells(X, 1).Characters(Start:=Y, Length:=2).Font.ColorIndex = Renk
Renk = Renk + 1
Next
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub
Sub İKİLİ_KARAKTER_RENKLENDİR()
Range("A:A").Font.ColorIndex = False
Range("A:A").TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=False, Space:=False, Other:=False, FieldInfo _
:=Array(1, 2), TrailingMinusNumbers:=True
Son = Cells(Rows.Count, 1).End(3).Row
For X = 1 To Son
For Y = 1 To Len(Cells(X, 1)) Step 2
10 Randomize Timer
Renk = Int((56 * Rnd) + 1)
If Renk = 1 Then GoTo 10
Cells(X, 1).Characters(Start:=Y, Length:=2).Font.ColorIndex = Renk
Next
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub
Sub İKİLİ_KARAKTER_RENKLENDİR()
Range("A:A").Font.ColorIndex = False
Range("A:A").TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
Semicolon:=False, Comma:=False, Space:=False, Other:=False, FieldInfo _
:=Array(1, 2), TrailingMinusNumbers:=True
Son = Cells(Rows.Count, 1).End(3).Row
Harici_Renkler = Array(2, 19, 20, 34, 35, 36)
For X = 1 To Son
For Y = 1 To Len(Cells(X, 1)) Step 2
10 Randomize Timer
Renk = Int((56 * Rnd) + 1)
For Z = 0 To UBound(Harici_Renkler)
If Harici_Renkler(Z) = Renk Then GoTo 10
Next
Cells(X, 1).Characters(Start:=Y, Length:=2).Font.ColorIndex = Renk
Next
Next
MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub