Delete Chart

  • Thread starter Thread starter Guest
  • Start date Start date
If the sheet has been protected, you need to unprotect it first (Tools menu).

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______
 
Is it an embedded chart object?
Where did you get it from?

Select the chart, press ALT+F11 to open the VB Editor. Press CTRL+G to open the
Immediate Window. Enter this line and press Enter:

?activechart.ProtectSelection

it will return False if it isn't protected.

Enter this line and press Enter:

?activesheet.protectcontents

it will return False if it isn't protected.

If this doesn't clarify things, post back.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______
 
Back
Top