python读取单元格的公式_⽤pythonxlrd从Excel单元格中获取
公式
所以我知道这是⼀篇很⽼的⽂章,但是我到了⼀个很好的⽅法,可以从⼯作簿中的所有⼯作表中获取公式,也可以让新创建的⼯作簿保留所有格式。
第⼀步是将.xlsx⽂件的副本保存为.xls
--在下⾯的代码中使⽤.xls作为⽂件名
使⽤Python2.7from lxml import etree
from StringIO import StringIO
import xlsxwriter
import subprocess
from xlrd import open_workbook
py import copy
from xlsxwriter.utility import xl_cell_to_rowcol
import os
file_name = ''
dir_path = os.path.dirname(alpath(file_name))
subprocess.call(["unzip",str(file_name+"x"),"-d","file_xml"])
xml_sheet_names = dict()
with open_workbook(file_name,formatting_info=True) as rb:
wb = copy(rb)
workbook_names_list = rb.sheet_names()
for i,name in enumerate(workbook_names_list):
xml_sheet_names[name] = "sheet"+str(i+1)
sheet_formulas = dict()
for i, k in enumerate(workbook_names_list):
xmlFile = os.path.join(dir_path,"file_xml/xl/worksheets/{}.xml".format(xml_sheet_names[k]))
with open(xmlFile) as f:
xml = f.read()
tree = etree.parse(StringIO(xml))
context = etree.iterparse(StringIO(xml))
sheet_formulas[k] = dict()
for _, elem in context:
python怎么读取xls文件if elem.tag.split("}")[1]=='f':
cell_key = parent().get(key="r")
cell_formula =
sheet_formulas[k][cell_key] = str("="+cell_formula)
sheet_formulas
字典“sheet_formulas”的结构{'Worksheet_Name': {'A1_cell_reference':'cell_formula'}}⽰例结果:{u'CY16': {'A1': '=Data!B5',
'B1': '=Data!B1',
'B10': '=IFERROR(Data!B12,"")',
'B11': '=IFERROR(SUM(B9:B10),"")',
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论