DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Application.Intersect(Target, [D2:D65536]) Is Nothing Then Exit Sub
If Target.Count > 1 Then Exit Sub
Set BUL = [H:H].Find(Target, LookAt:=xlWhole)
If Not BUL Is Nothing Then
RENK = Cells(BUL.Row, "H").Interior.ColorIndex
Range("A" & Target.Row & ":D" & Target.Row).Interior.ColorIndex = RENK
Else
Range("A" & Target.Row & ":D" & Target.Row).Interior.ColorIndex = xlNone
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [D:D]) Is Nothing Then Exit Sub
satirlar = "A" & Target.Row & ":D" & Target.Row
Range(satirlar).Interior.ColorIndex = Cells(Target + 1, "h").Interior.ColorIndex
End Sub