没有。不如具体说说想要做什么功能
[此贴子已经被作者于2020/8/10 16:38:55编辑过]
比如第一列第一行 等于第一列第二行乘以第一列第三行再加上 第一列第四行
只能使用代码处理
tables("A").rows(0)("第一列") = tables("A").rows(1)("第一列") * tables("A").rows(2)("第一列") + tables("A").rows(3)("第一列")
这代码放在哪里能实时更新呢?比如其他行数据变动,第一行就跟着变动?
for i as integer = 1 to
tables("A").rows.count - 1tables("A").rows(i)("第二列") = tables("A").rows(i-1)("第一列") * tables("A").rows(i)("第一列")
next