Copy sheet into a new workbook including embedded objects

katnip

New Member
Joined
May 27, 2015
Messages
2
Hello MrExcel users,

Hope all is well.

I would just like to ask on what method to use for copying an entire worksheet including the embedded objects into a new workbook. The embedded objects I am referring to are the screenshots (Clipboard to Excel using API) attached to it.

It seems that the Worksheets("Sheet1").Copy method is not working. :cry:

Thanks in advance for those who will respond. ;)
 

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.
The following code copies an entire sheet, including pictures, to a new sheet.

Workbooks("Book1").Sheets(1).Copy Workbooks("Book1").Sheets(Worksheets.Count)
 
Upvote 0
The following code copies an entire sheet, including pictures, to a new sheet.

Workbooks("Book1").Sheets(1).Copy Workbooks("Book1").Sheets(Worksheets.Count)

Hello yky,

Thank you for giving your input. I'll give this a try and let you know if it works like magic. Thank you again! :biggrin:
 
Upvote 0

Forum statistics

Threads
1,215,268
Messages
6,123,975
Members
449,137
Latest member
yeti1016

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