以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- New SQLCrossTableBuilder (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=116603) |
-- 作者:114039247 -- 发布时间:2018/3/27 23:56:00 -- New SQLCrossTableBuilder 1.怎么得到 VGroups 列的列名 不是统计列 (点击、选中都可以) 2.统计列怎么显示百分比 |
-- 作者:有点甜 -- 发布时间:2018/3/28 9:23:00 -- 1、循环每一列,判断
For Each c As Col in Tables("表A").Cols If c.name like "数量_*" OrElse c.caption like "*xxxx*" Then msgbox(c.name) End If Next
2、循环每一列,设置
http://www.foxtable.com/webhelp/scr/1659.htm
|