我想使用openpyxl
将公式从一个单元格复制粘贴到另一个单元格,并使用Excel时通常会获得的转置。
例如,将公式=SUM(J3:J18)
复制到下一列会自动将其更改为=SUM(K3:K18)
。
我发现这种方法可以使用win32com.client
,但我不知道openpyxl
的任何等价物。
有没有办法使用openpyxl
执行此操作,还是应该使用正则表达式手动替换所有列号?
由于
答案 0 :(得分:1)
您必须手动执行此操作,但您可能希望使用tokeniser而不是编写自己的解析器。
答案 1 :(得分:1)
openpyxl
提供了(至少现在)一些通过Translator
类转换公式的工具。在与公式tokenizer相关的页面中已提及:
这里是使用方法的示例。
>>> from openpyxl.formula.translate import Translator
>>> ws['F2'] = "=SUM(B2:E2)"
>>> # move the formula one colum to the right
>>> ws['G2'] = Translator("=SUM(B2:E2)", "F2").translate_formula("G2")
>>> ws['G2'].value
'=SUM(C2:F2)'
以下是用于翻译公式的函数的当前原型:
def translate_formula(self, dest=None, row=None, col=None):
"""
Convert the formula into A1 notation, or as row and column coordinates
The formula is converted into A1 assuming it is assigned to the cell
whose address is `dest` (no worksheet name).
"""