assenucler
Altın Üye
- Katılım
- 19 Ağustos 2004
- Mesajlar
- 3,588
- Excel Vers. ve Dili
- Ofis 365 TR 64 Windows 11 Pro x64 TR
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
=[COLOR="Red"]ESAYIYSA[/COLOR]($A8)
Sub Kalin_Kirmizi()
For Each c In Worksheets("Sayfa1").Range("A1:A150").Cells
If Len(c) = 3 Then
c.Font.Bold = True
c.Font.ColorIndex = 3
End If
Next
End Sub
Sub askm_Kirmizi_Yap()
Dim SonSat As Long
SonSat = Range("A" & Rows.Count).End(xlUp).Row
For i = 9 To SonSat
If Len(Cells(i, "A")) = 3 Then
Cells(i, "A").Font.Color = vbRed
Cells(i, "A").Font.Bold = True
End If
Next
End Sub
Sub Kirmizi_Kalin()
For i = 9 To 150
If Len(Cells(i, "A")) = 3 Then
Range("A" & i, "F" & i).Font.ColorIndex = 3
Range("A" & i, "F" & i).Font.Bold = True
End If
Next
End Sub
Sub TDH_ALT_KIRILIMLAR()
For satır = 8 To Cells(Rows.Count, 1).End(3).Row
If Len(Cells(satır, 1)) = 3 Then
With Range("A" & satır & ":F" & satır).Font
.Name = "Arial": .Color = vbRed
.Size = 10: .Bold = True: .Underline = True
End With
End If
Next
End Sub