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, Range("a1")) Is Nothing Then Exit Sub
a = Sheets("sayfa2").Cells(Rows.Count, 1).End(xlUp).Row
If Sheets("sayfa2").Cells(a, 1) = "" Then
Sheets("sayfa2").Cells(a, 1) = Target
Else
Sheets("sayfa2").Cells(a + 1, 1) = Target
End If
Target.Select
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [COLOR="red"]Range("A1:C65536")[/COLOR]) Is Nothing Then Exit Sub
son = [COLOR="Red"]Sheets("sayfa2")[/COLOR].Cells(Rows.Count, 1).End(xlUp).Row + 1
[COLOR="red"]Sheets("sayfa2")[/COLOR].Cells(son, 1) = Target.Value
Target.Select
End Sub