我使用 openpyxl 来读取单元格值(excel addin-webservice update this column。 )
我使用了 data_only = True
,但它没有显示当前单元格值,而是显示了 Excel 上次读取表格时存储的值。
wbFile = openpyxl.load_workbook(filename = xxxx,data_only=True)
wsFile = wbFile[c_sSheet]
How can i read the cell actual value ?