以文本方式查看主题
- Foxtable(狐表) (http://foxtable.net/bbs/index.asp)
-- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2)
---- 求table中值的合计 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=177962)
|
-- 作者:可乐七号
-- 发布时间:2022/6/12 17:18:00
-- 求table中值的合计
如图:将表格中的数据合计到到一个输入框中,怎么写? 此主题相关图片如下:合计.png
|
-- 作者:天宇科技
-- 发布时间:2022/6/12 19:40:00
--
http://www.foxtable.com/webhelp/
|
-- 作者:有点蓝
-- 发布时间:2022/6/12 21:11:00
--
dim sum as integerfor each r as row in tables("a").rows for each c as col in tables("a").cols if c.name <> "color" sum = sum + r(c.name) end if next next msgbox(sum)
|
-- 作者:天宇科技
-- 发布时间:2022/6/12 21:15:00
--
我估计楼主的意思是想求红框内的数字之和,不是你的意思。
|
-- 作者:有点蓝
-- 发布时间:2022/6/12 22:08:00
--
理解代码了吗,就是3楼的意思
|
-- 作者:天宇科技
-- 发布时间:2022/6/13 7:44:00
--
if c.name <> "color" 应该修改为if c.name <> "colour",开始没有看明白这个单词的意思。
[此贴子已经被作者于2022/6/13 7:45:49编辑过]
|