29.10.2018, 14:29
Hallo Johannes, :19:
probiere es mal so: :21:
Verzichte - wenn möglich - auf "Select". Es geht meistens auch ohne. Die von Matthias verlinkte PDF ist dazu ein guter Einstieg.
probiere es mal so: :21:
Code:
Option Explicit
Sub Main()
Dim lngRow As Long
Application.ScreenUpdating = False
Selection.Copy
With ThisWorkbook.Worksheets("Warenübersicht")
lngRow = .Cells(Rows.Count, 1).End(xlUp).Row + 1
.Range("A" & lngRow).PasteSpecial Paste:=xlPasteAll
.Range("F" & lngRow).Value = ActiveSheet.Name
End With
Application.CutCopyMode = False
Application.ScreenUpdating = True
End Sub
Verzichte - wenn möglich - auf "Select". Es geht meistens auch ohne. Die von Matthias verlinkte PDF ist dazu ein guter Einstieg.