I am trying to copy cells from one sheet, open a different existing workbook, and paste the data...
Cells.Select
Selection.Copy
Workbooks.Open "C:\Macro Testing\copyto.xlsx"
Cells.Select
ActiveSheet.PasteSpecial Paste:=xlPasteValues
ActiveWorkbook.Save
ActiveWindow.Close
It copies the sheet, opens the other workbook, but doesn't paste. The message "select destination and press enter or choose paste" is at the bottom of copyto.xlsx. If I hit enter it will paste, but will not run the rest of the macro. Same problem when I try to copy a specifc range and paste to a specifc range.
How do I get it to just paste on it's own?
Thanks for your help!