Copying data between two different workbooks

secoo140

Board Regular
Joined
Oct 12, 2013
Messages
85
Office Version
  1. 2010
Platform
  1. Windows
hello,

I'm trying to copy the text box inside my page.

The code I used didn't work
can you help me
Thank you

name of the textbox is "oyku"



Code:
Sub oyku()
'
'
    Windows("1.xlsm").Activate
    Sheets("Kimlik").Select
    Sheets("Kimlik").oyku.Copy
    Windows("2.xlsm").Activate
    Sheets("Kimlik").Select
    Sheets("Kimlik").oyku.Paste
    
    'trim için deniyorum
    


End Sub

EzLFd8.png
 
Last edited:

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
How about this:

Code:
Sub oyku()
    
    Workbooks("1.xlsm").Activate
    Worksheets("Kimlik").Shapes("oyku").Copy
    Workbooks("2.xlsm").Activate
    Worksheets("Kimlik").Paste
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,849
Messages
6,121,925
Members
449,056
Latest member
denissimo

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