以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 合计模式无效 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=135532) |
-- 作者:zaq3574020 -- 发布时间:2019/5/29 9:00:00 -- 合计模式无效 Tables("库存分析_库存表").DataSource = DataTables("库存去重表") Tables("库存分析_库存表").Filter = Filter With Tables("库存去重表") .Cols("数量").GrandTotal = True \'指定要合计的列 .Cols("吊牌总价").GrandTotal = True \'指定要合计的列 .GrandTotal = True \'显示合计模式 End With 以上代码 执行后,没有合计一栏
|
-- 作者:有点甜 -- 发布时间:2019/5/29 9:14:00 -- With Tables("库存去重表")
改成
With Tables("库存分析_库存表")
|