我已经跑遍了所有领域,但似乎找不到我要找的东西。我在这里找到的所有线程对我来说都是死胡同。xlrd、xlwt 和 xlutils 几乎可以满足我的需求,但是……基本思想是我需要使用 Python 将简单数据(字符串)写入 Excel 模板的特定工作表,并将该模板写入新的 .xls 文件.
读入模板、将其复制到新的工作簿对象、写入新值以及写出新的 .xls 文件都没有问题。但是,我找不到同时维护公式和格式的 Python Excel 模块。
`
our = 'template.xls'
# open up read-only template with formatting maintained
rb = open_workbook(our,formatting_info=True)
r_sheet = rb.sheet_by_index(4)
# copy this to a new workbook object
wb = copy(rb)
# 5th sheet (index = 4) is where we need to drop the data we have
w_sheet = wb.get_sheet(4)
# populate with new data!
for row_index in range(0, r_sheet.nrows):
w_sheet.write(row_index, 1, "some string that is our data")
# write it!
wb.save('new.xls')
`
在模板中阅读时,格式保持不变(某些颜色略有改变;嗯!),但公式不是,所以“new.xls”在公式曾经存在的地方都有空白。
知道如何同时维护格式和公式吗?
请注意,我被锁定在 Python 2.7 中。