I got the solution from another thread to create a range of filtered rows:
Dim filterRange
With ActiveWorkbook.Worksheets("SCOPE").Range("A2").CurrentRegion
filterRange = .Resize(.Rows.Count - 1).Offset(1).SpecialCells(xlVisible).Address
End With
Now I want to select this range and copy its value into another sheet like this:
Range(filterRange).Select
But I do not understand why this is not working. Can someone explain it?
Thanks in advance.