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
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?
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?