Copy range from workbook and paste it into a closed workbook

Sarahj0630

New Member
Joined
Aug 14, 2012
Messages
11
I'm wanting to log user inputs from one spreadsheet to another one that would be closed. It just needs to paste to the next available row. I've scoured the internet and am having trouble finding something that works. The below code will open the workbook but isn't copy/pasting the info or closing the new workbook. I'm getting a run-time error. Please help!

Sub UpdateTrackerTool()

Dim FilePath As String
Dim wbk As Workbook

TrackerTool = "C:\Users\blah blah\Tech Issue Tracking Tool.xlsm"

Set wbk = ActiveWorkbook

Workbooks.Open TrackerTool

Range("A2").End(xlDown).Offset(1, 0).Select
wbk.Sheets("Tech Issue").Range("Q29:AA29").copy Destination:=ActiveCell

ActiveWorkbook.Close savechanges:=True


MsgBox "Technical Issue Logged Successfully!"

End Sub
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
I like to use Workbook objects for both workbooks. Give this a try:
VBA Code:
Sub UpdateTrackerTool()

    Dim TrackerTool As String
    Dim wbk1 As Workbook, wbk2 As Workbook

    TrackerTool = "C:\Users\blah blah\Tech Issue Tracking Tool.xlsm"

    Set wbk1 = ActiveWorkbook

    Workbooks.Open TrackerTool
   
    Set wbk2 = ActiveWorkbook

    wbk1.Activate
    wbk1.Sheets("Tech Issue").Range("Q29:AA29").Copy
    wbk2.Activate
    Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Select
    ActiveSheet.Paste
    Application.CutCopyMode = False

    wbk2.Close savechanges:=True

    MsgBox "Technical Issue Logged Successfully!"

End Sub
 
Upvote 0
I like to use Workbook objects for both workbooks. Give this a try:
VBA Code:
Sub UpdateTrackerTool()

    Dim TrackerTool As String
    Dim wbk1 As Workbook, wbk2 As Workbook

    TrackerTool = "C:\Users\blah blah\Tech Issue Tracking Tool.xlsm"

    Set wbk1 = ActiveWorkbook

    Workbooks.Open TrackerTool
  
    Set wbk2 = ActiveWorkbook

    wbk1.Activate
    wbk1.Sheets("Tech Issue").Range("Q29:AA29").Copy
    wbk2.Activate
    Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Select
    ActiveSheet.Paste
    Application.CutCopyMode = False

    wbk2.Close savechanges:=True

    MsgBox "Technical Issue Logged Successfully!"

End Sub

Thank you! I needed to enter this as a module and I had it in my sheet which was giving me grief. I also needed to paste as values as well and so I adjusted it and its working! Here is what I ended up with for those that might find this thread and need assistance :)

Sub UpdateTrackerTool()

Dim TrackerTool As String
Dim wbk1 As Workbook, wbk2 As Workbook

TrackerTool = "C:\Users\blah blah\Tech Issue Tracking Tool.xlsm"

Set wbk1 = ActiveWorkbook

Workbooks.Open TrackerTool

Set wbk2 = ActiveWorkbook

wbk1.Activate
wbk1.Sheets("Tech Issue").Range("Q29:AA29").copy
wbk2.Activate
Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Select

Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Tha
Application.CutCopyMode = False

wbk2.Close savechanges:=True

MsgBox "Technical Issue Logged Successfully!"

End Sub
 
Upvote 0
Your are welcome!
I needed to enter this as a module and I had it in my sheet which was giving me grief.
Just to clarify, you didn't enter this "as a Module", rather you entered the code into "a Module". A Module is just a container to hold VBA code.

VBA code is stored in Modules. There are different kind of Modules. There are the default "Sheet" and "ThisWorkbook" modules, that are used mostly for Event Procedure VBA code, which is code that runs automatically upon some event happening (i.e. opening the workbook, changing a cell, saving a file, etc).

And there are Modules which you can create yourself. The code in these will not run automatically, they are usually called by something (button, running the code manually, a function call, etc).
 
Upvote 0

Forum statistics

Threads
1,214,798
Messages
6,121,636
Members
449,043
Latest member
farhansadik

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top