DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
[FONT="Arial Narrow"][B]Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)[/B]
If Intersect(Target, Range("A2:A" & Cells(Rows.Count, "A").End(xlUp).Row)) Is Nothing Then Exit Sub
On Error Resume Next
Cancel = True
Set h = Sheets("hedef"): Set wf = Application.WorksheetFunction
If Target.Value = "" Or wf.CountIf(h.Range("E:E"), Target) = 0 Then Exit Sub
h.Activate: h.Cells(wf.Match(Target, h.Range("E:E"), 0), 5).Activate
[B]End Sub[/B][/FONT]
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim k As Range, sonsat As Long
If Intersect(Target, [A:A]) Is Nothing Then Exit Sub
Cancel = True
If Target.Value = "" Then Exit Sub
Set k = Sheets("Hedef").Range("E:E").Find(Target.Value, , xlValues, xlWhole)
If Not k Is Nothing Then
Sheets("hedef").Select
k.Select
End If
End Sub