2 Workbooks, Workbooks.Worksheets.DataBodyRange(col,row) = Value Pastes to Wrong Workbook

Marmit424

Board Regular
Joined
Jul 12, 2016
Messages
58
Hey!

Goal:
I have two workbooks open, the code sends information from one workbook to the other.


Code:
Dim tbSendTo As ListObject
Set tbSendTo = Workbooks(wbName_SendTo).Worksheets(wsName_SendTo).ListObjects(tbName_SendTo)

tbSendTo.DataBodyRange(Row, colInput) = returnValue

Problem:
The code is pasting into the wrong workbook. Despite tbSendTo referencing the correct workbook, my code is pasting back into my tbObtainFrom workbook.


Is there a way to use the DataBodyRange qualifier while keeping the reference to the proper workbook?

Thanks!!
 
Last edited:

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Turned out it was an ID-10-T error.

Just put the wrong listobject reference identifier when I was refactoring my code.

Cheers!

Hey!

Goal:
I have two workbooks open, the code sends information from one workbook to the other.


Code:
Dim tbSendTo As ListObject
Set tbSendTo = Workbooks(wbName_SendTo).Worksheets(wsName_SendTo).ListObjects(tbName_SendTo)

tbSendTo.DataBodyRange(Row, colInput) = returnValue

Problem:
The code is pasting into the wrong workbook. Despite tbSendTo referencing the correct workbook, my code is pasting back into my tbObtainFrom workbook.


Is there a way to use the DataBodyRange qualifier while keeping the reference to the proper workbook?

Thanks!!
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,862
Members
449,052
Latest member
Fuddy_Duddy

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