"COPY" sheet excludes graphs

jpf5911

Board Regular
Joined
Jun 10, 2002
Messages
76
I have a sheet in a workbook that includes a bunch of graphs (as objects, I guess).

I want to create multiple copies of the same sheet to facilitate my project, but when I make a "COPY" of the sheet, the graphs do not show up on the new sheet.

Thanks,

J
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Do you do it manually? If so, you want to click on the rectangle to the left of column heading A and on top of the row heading 1. If you click the right rectangle, the entire sheet area will change color, a little blueish. Now, you can copy and paste. All pictures and charts will be pasted. Pictures tend to change sizes after being pasted. If you have a lot of pictures, it'll be a pain to adjust them to their original sizes one by one.
 
Upvote 0
Run this script from the sheet you want copied:
Code:
Sub Copy_Sheets()
'Modified 5/6/18 3:15 AM EDT
Dim n As String
Dim ans As Long
n = ActiveSheet.Name
ans = InputBox("Make this many copies", "Make copies of sheet named  " & n, "5")
    For i = 1 To ans
        Sheets(n).Copy After:=Sheets(Sheets.Count)
        ActiveSheet.Name = "Copy" & ActiveSheet.Index
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,089
Messages
6,128,760
Members
449,466
Latest member
Peter Juhnke

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