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)
On Error Resume Next
If Intersect(Target, [B:B]) Is Nothing Then Exit Sub
If Target = "" Then Exit Sub
If Target = "Hesap" Or Target = "Kodu" Then Exit Sub
If Target <> "" Then
Application.EnableEvents = False
Rows(Target.Row).Copy
Rows(Target.Row + 1).Insert Shift:=xlDown
Application.CutCopyMode = False
Application.EnableEvents = True
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Intersect(Target, [B:B]) Is Nothing Then Exit Sub
If Target = "" Then Exit Sub
If Target = "Hesap" Or Target = "Kodu" Then Exit Sub
If Target <> "" Then
Rows(Target.Row + 1).Insert Shift:=xlDown
Rows(Target.Row + 1).FormulaR1C1 = Rows(Target.Row).FormulaR1C1
End If
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If Intersect(Target, [B:B]) Is Nothing Then Exit Sub
If Target = "Hesap" Or Target = "Kodu" Then Exit Sub
If Target = "" Then GoTo SON
If Target <> "" Then
Rows(Target.Row + 1).Insert Shift:=xlDown
Rows(Target.Row + 1).FormulaR1C1 = Rows(Target.Row).FormulaR1C1
SATIR = ActiveCell.Row
Range("" & ("B" & SATIR & ":H" & SATIR & ",J" & SATIR & ":M" & SATIR & ",P" & SATIR)).ClearContents
End If: Exit Sub
SON: Rows(Target.Row).Delete
End Sub