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)
If Intersect(Target, [K7]) Is Nothing Then Exit Sub
Set s2 = Sheets("Sayfa2")
For i = 2 To s2.[C65536].End(3).Row
If [K7] = s2.Cells(i, "C") Then
s2.Select
s2.Range("C" & i).Select
Exit For
End If
Next i
End Sub
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Intersect(Target, [K3:K150]) Is Nothing Then Exit Sub
Set s2 = Sheets("Sayfa2")
[COLOR=red][B]Deger = Target[/B][/COLOR]
For i = 2 To s2.[C65536].End(3).Row
If [COLOR=red][B]Deger = s2.Cells(i, "C")[/B][/COLOR] Then
s2.Select
s2.Range("C" & i).Select
Exit For
End If
Next i
End Sub