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 Intersect(Target, [E2]) Is Nothing Then Exit Sub
If Target.Value = "" Then Exit Sub
Set Bul = [B:B].Find(Target.Value)
Application.EnableEvents = False
If Bul Is Nothing Then
Target = "Kayıtlarda Yok"
Else
Cells(Bul.Row, "C") = Target
End If
Application.EnableEvents = True
End Sub