This macro worked just fine before we updated to windows 7 and Excel 2010.
The macro stops at Activesheet.paste. All this does is open a file, copy the data and paste it to the first document. There is more code at the end to close all the open documents. Thanks, Bob
Application.Goto Reference:="R7C14"
Workbooks.Open Filename:="ALSP.xls"
Workbooks("ALSP.xls").Activate
Range("B7:L61").Select
Application.CutCopyMode = False
Selection.Copy
Windows("R4SP.xls").Activate
ActiveSheet.Paste
Use of SELECT and ACTIVATE is cumbersome, you should be able to set variables references to your worksheet(s) and do copy commands directly with no selecting.
To paste values, separate the copy/paste to separate commands: