共3个回答
UJ
游客uJLTPs

需要在工作表初始化配置中设置单元格数据对应的calcChain。

[{
    "r": 6, //行数
    "c": 3, //列数
    "index": 1, //工作表id
    "func": [true, 23.75, "=AVERAGE(D3:D6)"], //公式信息,包含公式计算结果和公式字符串
    "color": "w", //"w":采用深度优先算法 "b":普通计算
    "parent": null,
    "chidren": {},
    "times": 0
}, {
    "r": 7,
    "c": 3,
    "index": 1,
    "func": [true, 30, "=MAX(D3:D6)"],
    "color": "w",
    "parent": null,
    "chidren": {},
    "times": 0
}]

在初始化工作簿的时候,如果有单元格包含公式,请务必添加对应单元格位置的公式链,否则Luckysheet无法识别公式。