DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim c As Range
Application.EnableEvents = False
If Intersect(Target, [C6]) Is Nothing Then Exit Sub
If Target = "" Then Target.Interior.ColorIndex = xlNone
Set c = Range("J6:J11").Find(Target)
If Not c Is Nothing Then
Range("J" & c.Row).Copy
Target.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone
Application.CutCopyMode = False
End If
Application.EnableEvents = True
End Sub