Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
tables("A").rows(2)("第二列") = tables("A").rows(1)("第一列") * tables("A").rows(2)("第一列"),,,批量这么处理,代码怎么写,老师 |
for i as integer = 1 to tables("A").rows.count - 1 tables("A").rows(i)("第二列") = tables("A").rows(i-1)("第一列") * tables("A").rows(i)("第一列") next |