Nelson78
Well-known Member
- Joined
- Sep 11, 2017
- Messages
- 526
- Office Version
- 2007
Hello everybody.
I've filtered some records on the original workbook and I've pasted them in a new workbook.
My problem is: beeing in the above situation, how can I paste in the same format?
Thank you.
I've filtered some records on the original workbook and I've pasted them in a new workbook.
Code:
If .SpecialCells(xlCellTypeVisible).Count > 2 Then
.Offset(1, 0).Resize(lr - 1).SpecialCells(xlCellTypeVisible).EntireRow.Copy new.Sheets(1).Range("A2")
End If
My problem is: beeing in the above situation, how can I paste in the same format?
Thank you.