G
Guest
I created an excell x-y chart that has 4 curves on it. Is it possible to
select 2 of the curves and shade the area between them?
select 2 of the curves and shade the area between them?
Andy Pope said:Hi,
2 ways,
activechart.Shapes.SelectAll
selection.delete
do while activechart.Shapes.Count > 0
activechart.Shapes(activechart.Shapes.Count).Delete
loop
Cheers
Andy
Jon Peltier said:You can do it with an area chart, or by adapting this VBA technique:
http://peltiertech.com/Excel/Charts/VBAdraw.html
- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______
Jon Peltier said:You can do it with an area chart, or by adapting this VBA technique:
http://peltiertech.com/Excel/Charts/VBAdraw.html
- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______