以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何设置%显示  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=186908)

--  作者:散客
--  发布时间:2023/6/7 17:51:00
--  如何设置%显示
Dim g As New CrossTableBuilder("统计表1", DataTables("产值调研数据"))
g.Caption = "按月统计(累计)增减情况"
g.HGroups.AddDef("xz", "属地")
g.VGroups.AddDef("日期", DateGroupEnum.Year, "{0}年")
g.VGroups.AddDef("日期", "{0}月")
g.Totals.AddDef("当月贡献率", "当月贡献率")
g.Totals.AddDef("累计贡献率", "累计贡献率")
g.VerticalTotal = True
g.Build()
MainTable = Tables("统计表1")

求教:如何获取准确的列名,目的:设置百分比显示

--  作者:有点蓝
--  发布时间:2023/6/8 8:28:00
--  
for each c as col in Tables("统计表1").cols
if c.name like "**" then
c.DataCol.SetFormat("0.0%")
end if
next