I'm trying to copy visible cells after using my filter to another sheet in the same book but I'm not sure about this code. How it looks like now:
Sub Button1_Click()
Dim i As Integer
Dim VisRan As Range
VisRan = Sheets(1).Range("a39:bm29684").SpecialCells(xlCellTypeVisible)
Visran.Copy
Sheets(2).Cells(1, 1).Select
Selection.Paste
But it doesn't work. What's the problem?
Thx in advance