Sub M_snb()
With Sheets("rohdaten").Cells(1).CurrentRegion
.AutoFilter 1, Label1380
.AutoFilter 4, Label450
.Copy .Parent.Cells(1, 60)
ListBox1.List = Application.Index(.Parent.Cells(1, 60).CurrentRegion.Value, [row(1:100)], Array(7, 8, 21))
.Parent.Cells(1, 60).CurrentRegion.ClearContents
End With
ListBox1.ColumnCount = 3
End Sub
Sub M_snb()
With Sheets("Rohdaten").Cells(1).CurrentRegion
.AutoFilter 1, Label1380.Caption
.AutoFilter 4, Label450.Caption
.Copy .Parent.Cells(1, 60)
Listbox1.List = .Parent.Cells(1, 60).CurrentRegion
.Parent.Cells(1, 60).CurrentRegion.ClearContents
End With
With Listbox1
.ColumnCount = 21
.ColumnWidths = "0;0;0;0;0;0100;150;0;0;0;0;0;0;0;0;0;0;0;0;30"
End With
End Sub