I am new to python and its workings. I have an excel spreadsheet which was got using some VBA's. Now I want to invoke Python to do some of the jobs... My question then is: How can I use python script instead of VBA in an excel spreadsheet? An example of such will be appreciated.

link|improve this question
Edit your question with correct tags. – eumiro Jan 28 '11 at 14:53
I doubt about MS Excel, but in OpenOffice / LibreOffice, you definitely can use Python for scripting. – 9000 Jan 28 '11 at 15:47
feedback

3 Answers

Resolver One, or Dirigible:

http://www.resolversystems.com/products/

link|improve this answer
Hey, I work at Resolver, so I'm biased, but if you can bear to export from Excel, then both Resolver One or Dirigible will import data and cell formulae from Excel sheets (only .xls or cvs formats are currently supported, and we don't currently attempt to import VBA functions) Then you can script in Python to your heart's content, and use full Python expressions in cells (including calling functions you define, using classes, 3rd party modules, etc) – Jonathan Hartley Feb 7 '11 at 11:51
feedback

A simple google search brought me to a this site specifically talking about Excel and Python. It also includes this pdf giving a deep explanation of the packages and contains examples.

link|improve this answer
feedback

I've always done the manipulation of Excel spreadsheets and Word documents with standalone scripts which use COM objects to manipulate the documents. I've never come across a good use case for putting Python into a spreadsheet in place of VBA.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.