Re: Creating Charts in Excel with pyExcelerator.ExcelMagic

2006-08-18 Thread implicate_order
Gentlemen, Thanks for your responses. I also found some additional threads on this newsgroup that gave me insight into how to use the MS Excel com objects (or whatever they are called)... So I used this: xl = win32com.client.Dispatch("Excel.Application") wb = xl.Workbooks.Open(outfile01) prodws

Re: Creating Charts in Excel with pyExcelerator.ExcelMagic

2006-08-16 Thread Chris
implicate_order wrote: > Greetings, > Here's an Excel class I use. I'm afraid I can't recall where I found the basic class. I have a vague recollection it is due to Mark Hammond, author of the win32com package. Might have been in win32com demos. (Whoever the original author is anyway, many thanks

Re: Creating Charts in Excel with pyExcelerator.ExcelMagic

2006-08-15 Thread [EMAIL PROTECTED]
implicate_order wrote: > Greetings, > > I'm new to python and am in the process of writing a script to parse > some CSV data, spread it across multiple Excel worksheets and then > generate charts. I searched the internet to find some place where I > could look up a HOWTO doc/recipe to do that usin