redskinsfan
New Member
- Joined
- Aug 11, 2006
- Messages
- 10
I am currently trying to cut and paste sheet 1 of one workbook to sheet 2 of another workbook. The code I am using works, but it takes a VERY long time to accomplish this simple taks. Is there a more efficient way of doing this? Thanks in advance.
Like i said before this works, but takes over a minute. (It's quicker to do it manually.) Any suggestions?
Code:
Windows(ExclusionName & ".xls").Activate
Cells.Select
Selection.Copy
Windows(FileName & ".xls").Activate
Sheets("All SPIDs by Scorecard").Select
ActiveSheet.Paste
Sheets("Score Distribution by SPID & Scorecard").Select
Windows(ExclusionName & ".xls").Activate
Like i said before this works, but takes over a minute. (It's quicker to do it manually.) Any suggestions?