DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
On Error GoTo hata
If Intersect(Target, [d2:d11]) Is Nothing Then Exit Sub
If Target.Value = "" Then Exit Sub
Set c = Range("A1:A65536").Find(Target.Value, LookIn:=xlValues)
If c Is Nothing Then Exit Sub
Range(c.Address).Select
hata:
End Sub