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