- Katılım
- 7 Nisan 2007
- Mesajlar
- 17
- Excel Vers. ve Dili
- EXCEL 2000
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Emre()
Dim i As Integer
For i = 2 To 22
If Cells(i, 3) = "ANKARA" And Cells(i, 4) = "HAT" Then
Cells(i, 9).Resize(, 2).Interior.ColorIndex = 6
ElseIf Cells(i, 3) = "ANKARA" And Cells(i, 4) = "KOMPLE" Then
Cells(i, 9).Resize(, 2).Interior.ColorIndex = 3
ElseIf Cells(i, 3) = "KAYSERİ" And Cells(i, 4) = "HAT" Then
Cells(i, 9).Resize(, 2).Interior.ColorIndex = 5
ElseIf Cells(i, 3) = "KAYSERİ" And Cells(i, 4) = "KOMPLE" Then
Cells(i, 9).Resize(, 2).Interior.ColorIndex = 4
End If
Next i
i = Empty
End Sub
Murat OSMA; * Koşullu Biçimlendirme ile de yapılabilir...[/QUOTE' Alıntı:arkadaşın dediği gibi. dosyayı ekledim ama renkleri tutturamadım![]()
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
Target.Offset(0, 3).Interior.ColorIndex = 3
If Target.Value = "" Then
Target.Offset(0, 3).Interior.ColorIndex = 0
End If
End If
End Sub