In order for this code to work, you first have to put it in a module.
Second, you are opening it as READ ONLY so you can't change it.
Here is the code I tried and it works:
Option Explicit
Sub copyDataToClosedWorkbook()
Dim wbTo As Workbook
Dim wbFrom As Workbook, asd, qwe
Set wbFrom = ThisWorkbook
' prevent the user from seeing the workbook being opened
Application.ScreenUpdating = False
'change foldername
Set wbTo = Workbooks.Open("c:\a.xls", False, False)
wbTo.Sheets(1).Cells(10, 4) = wbFrom.Sheets(1).Cells(1, 3)
wbTo.Close True 'save & close
Application.ScreenUpdating = True
Set wbTo = Nothing
Set wbFrom = Nothing
End Sub
Bookmarks