I have a macro that does some routines for me. I have not used it for about 6 months in the past it would take some time (very slow) to run through this part of the code but now it simply does not seem to continue. I can let it run for 20 mins and does nothing...i am hoping for some insight on how to resolve this issue.
Sheets("spreadsheet.xls").Select
lastrowm = Sheets("tab").Range("A6").End(xlDown).Row
Range("A5:X" & lastrowm).Select
Selection.Copy
Windows("spreadsheet2.xls").Activate
Sheets("tab").Select
Range("A5").Select
ActiveSheet.Paste
When the macro executes PASTE it just sits there. Not sure why.
In the meantime I have been placing a break point on Range("A5").Select and I manually paste the stuff and then i continue...
This makes no sense to me.
Help appreciated
Bookmarks