I'm having trouble scripting Excel to embed a chart from python.
Say I have created a sheet object and a workbook object, "xlSheet" and
"xlBook".
Creating a chart in front of my sheet is as easy as:
xlSheet.Select( )
xlChart = xlBook.Charts.A dd()
Now how do I tell it to go embed itself in my sheet? In VBA, it might be
something like:
xlChart.Locatio n Where:=xlLocati onAsObject, Name:=xlSheet.N ame
Thanks.
(Is there a newsgroup/list with more of a focus on issues like this than
c.l.py?)
-- Stephen
Say I have created a sheet object and a workbook object, "xlSheet" and
"xlBook".
Creating a chart in front of my sheet is as easy as:
xlSheet.Select( )
xlChart = xlBook.Charts.A dd()
Now how do I tell it to go embed itself in my sheet? In VBA, it might be
something like:
xlChart.Locatio n Where:=xlLocati onAsObject, Name:=xlSheet.N ame
Thanks.
(Is there a newsgroup/list with more of a focus on issues like this than
c.l.py?)
-- Stephen
Comment