0

到目前为止,我有一个运行良好的 Python 程序,但是......我现在需要对 52 个不同工作表中的所有相同单元格位置求和。

For example:   I have 52 sheets and need to sum cell D75 across all the sheets in my coversheet.

请注意,封面已经制作好了,我对此没有任何问题,我只需要确定如何将总和合并到我的封面中。

干杯!!!

4

1 回答 1

0

完全未经测试,如果你不能让它工作,请告诉我,我会仔细看看

wb = open_workbook('simple.xls')
values = []
for s in wb.sheets(): #iterate over the sheets
    cell = sheet.cell(3,74) #D=3, need to offset 75 by 1 hence 74
    values.append(float(cell.value))
print sum(values)

另外,这是一个很好的教程http://www.simlistix.co.uk/presentations/python-excel.pdf

于 2013-07-30T20:38:34.953 回答