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, [A2:F65536]) Is Nothing Then GoTo Son
k = ActiveCell.Row - 1
s = ActiveCell.Column
If WorksheetFunction.CountIf(Range(Cells(2, s), Cells(Cells(65536, 1).End(xlUp).Row, s)), Cells(k, s)) > 1 Then
MsgBox " Bu Veriyi Daha Önce de Girmiştiniz. ?"
Cells(k, s).Select
Exit Sub
End If
Son:
If Target.Column = 6 Then
Target.Offset(1, -5).Select
Else
Target.Offset(0, 1).Select
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error GoTo Son
If Target.Column > 6 Then Target.Offset(1, -6).Select
Son:
End Sub