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

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
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,216,187
Messages
6,129,396
Members
449,508
Latest member
futureskillsacademy

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