formula属性

formula属性

获取或设置 Cell 中的 formula。

评论

formula 字符串始终以等号 (=) 开头。 请始终使用逗号(,)作为参数分隔符,例如“=SUM(A1, E1, H2)”。

例子

from aspose.cells import Workbook

excel = Workbook()
cells = excel.worksheets[0].cells
cells.get("B6").formula = "=SUM(B2:B5, E1) + sheet1!A1"

定义:

@property
def formula(self):
    ...
@formula.setter
def formula(self, value):
    ...

也可以看看