Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column <> 16 And Target.Row > Cells(Rows.Count, 1).End(xlUp).Row Then Exit Sub If Target.Value = "x" Or Target.Value = "X" Then Range(Cells(Target.Row, 1), Cells(Target.Row, 15)).Copy _ Worksheets("Liste Verkauf").Range("A" & Worksheets("Liste Verkauf").Cells(Rows.Count, 1).End(xlUp).Row + 1) End If End Sub
58.7k Fragen
251k Antworten
7.3k Nutzer