"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

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
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,215,454
Messages
6,124,933
Members
449,195
Latest member
Stevenciu

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