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)
Dim k As Range, sh As Worksheet
If Intersect(Target, [D5]) Is Nothing Then Exit Sub
Set sh = Sheets("VERİ")
Set k = sh.Range("C:C").Find(Target.Value, , xlValues, xlWhole)
If k Is Nothing Then
MsgBox "Bu veri bulunamadı!", vbCritical, "VERİ YOK"
Else
sh.Select
k.Select
End If
End Sub