以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 求助 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=130162) |
-- 作者:outcat -- 发布时间:2019/1/14 23:05:00 -- 求助
老师,我想显示可预订库存数,显示在上面的 可预订库存=实际库存的合计数 + 下面这个表的 欠货数量的合计数 这个表达式怎么写,写在哪呀 |
-- 作者:有点甜 -- 发布时间:2019/1/15 9:18:00 -- 写到timertick事件
http://www.foxtable.com/webhelp/scr/1301.htm
比如,代码
Dim sum1 = Tables("表A").compute("sum(库存)") Dim sum2 = Tables("表B").compute("sum(欠货数量)") e.form.controls("textbox1").text = sum1+sum2 |