seddur
Altın Üye
- Katılım
- 12 Nisan 2012
- Mesajlar
- 531
- Excel Vers. ve Dili
- Microsoft office professional plus 2019
- Altın Üyelik Bitiş Tarihi
- 18-12-2024
Merhabalar.Aşağıdaki kod ile "G" sütununda NAKİT-VİSA-İPTAL yazan satırları renklendiriyorum ancak "G" sütununa değişken rakamsal değerler (100,101,102 gibi) girdiğimde de ilgili satır renklensin istiyorum.İlgilenecek arkadaşa şimdiden Teşekkür ederim.
Dim a As Byte
For a = 2 To 50
If Cells(a, "G") = "İPTAL" Then
With Range("A" & a & ":G" & a)
.Interior.ColorIndex = 22
.Font.ColorIndex = 1
.Font.Bold = True
End With
Else
If Cells(a, "G") = "NAKİT" Or Cells(a, "G") = "VİSA" Or Cells(a, "G") = Sheets("Anasayfa").TextBox9 Then
With Range("A" & a & ":G" & a)
.Interior.ColorIndex = 50
.Font.ColorIndex = 2
.Font.Bold = True
End With
Else
With Range("A" & a & ":G" & a)
.Interior.ColorIndex = 45
.Font.ColorIndex = 1
.Font.Bold = True
End With
End If: End If
Next
Dim a As Byte
For a = 2 To 50
If Cells(a, "G") = "İPTAL" Then
With Range("A" & a & ":G" & a)
.Interior.ColorIndex = 22
.Font.ColorIndex = 1
.Font.Bold = True
End With
Else
If Cells(a, "G") = "NAKİT" Or Cells(a, "G") = "VİSA" Or Cells(a, "G") = Sheets("Anasayfa").TextBox9 Then
With Range("A" & a & ":G" & a)
.Interior.ColorIndex = 50
.Font.ColorIndex = 2
.Font.Bold = True
End With
Else
With Range("A" & a & ":G" & a)
.Interior.ColorIndex = 45
.Font.ColorIndex = 1
.Font.Bold = True
End With
End If: End If
Next