I am trying to edit several excel files (.xls) without changing the rest of the sheet. The only thing close so far that I've found is the xlrd, xlwt, and xlutils modules. The problem with these is it seems that xlrd evaluates formulae when reading, then puts the answer as the value of the cell. Does anybody know of a way to preserve the formulae so I can then use xlwt to write to the file without losing them? I have most of my experience in Python and CLISP, but could pick up another language pretty quick if they have better support. Thanks for any help you can give!

link|improve this question
Do you have Excel installed? – Steven Rumbalski Oct 5 '11 at 18:00
Yes, but I am running it on a Mac. I also have OpenOffice – user934001 Oct 7 '11 at 14:04
feedback

2 Answers

I've used the xlwt.Formula function before to be able to get hyperlinks into a cell. I imagine it will also work with other formulas.

Update: Here's a snippet I found in a project I used it in:

link = xlwt.Formula('HYPERLINK("%s";"View Details")' % url)
sheet.write(row, col, link)
link|improve this answer
1  
You seem to have missed the question. The OP's problem is that xlrd doesn't read formulas. Therefore, he doesn't have the formulas to write out with xlwt. – John Y Oct 5 '11 at 21:12
feedback

As of now, xlrd doesn't read formulas. It's not that it evaluates them, it simply doesn't read them.

For now, your best bet is to programmatically control a running instance of Excel, either via pywin32 or Visual Basic or VBScript (or some other Microsoft-friendly language which has a COM interface). If you can't run Excel, then you may be able to do something analogous with OpenOffice.org instead.

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.