VBA Delete Graph

Analyze_This

Board Regular
Joined
Oct 29, 2008
Messages
122
I have a chart that I need to get rid of as part of my code. I recorded this part of the macro and ended up with the following code

Code:
ActiveChart.Location Where:=xlLocationAsNewSheet, Name:="Graph-State-KU"
ActiveChart.CopyPicture
ActiveChart.Parent.Delete
ActiveChart.Pictures.Paste.Select

ActiveChart.Parent.Delete is where I get the error

Simple, right? It's what the macro recorder gave me, it's what everyone posts on the web when deleting a graph. But it always gives me the same error: "Object doesn't support this property or method"

The chart is in a sheet by itself, so I can't use activechart.delete because that deletes the entire sheet, not just the chart. Any ideas?
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
The chart is in a sheet by itself, so I can't use activechart.delete because that deletes the entire sheet, not just the chart.
... and why do you want to delete a chart from a chart sheet and NOT the chart sheet?
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,701
Members
448,980
Latest member
CarlosWin

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