I have a large spreadsheet that I am processing in python. The source sheet has embeded excel formulas. I am using the libraries xlrd and xlwt. The formatting (such as hightlight) is copied from the source data, however formulas are not copied. How can this be resolved?
Code to copy the sheet;
def copy2(wb):
w = XLWTWriter()
process(XLRDReader(wb, 'unknown.xls'), w)
return w.output[0][1], w.style_list