Hello,
I have been told to many Select and copy and paste commands can slow down my code.
What would be a faster way of doing this? - It is copying the filtered results to a new Sheet called filtered.
I have been told to many Select and copy and paste commands can slow down my code.
What would be a faster way of doing this? - It is copying the filtered results to a new Sheet called filtered.
Code:
Sub Filtered()
'
'~~~~ This macro adds the filtered sheet to begin the report process
'
Sheets.Add.Name = "Filtered"
Sheets("Obj").Select
Cells.Select
Selection.Copy
Sheets("Filtered").Select
Cells.Select
ActiveSheet.Paste
End Sub