以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 月日用二位 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=157241) |
-- 作者:nbsugu_z -- 发布时间:2020/10/9 16:11:00 -- 月日用二位 老师你好。我用日期时间列如:2020-01-02 月、日都用二位数表示 在按日期做统计汇总时,如何格式化月日,用2位数表示 Dim bd1 As New GroupTableBuilder("统计表1", DataTables("hyjd")) bd1.Groups.AddDef("付费时间", DateGroupEnum.Year, "年") bd1.Groups.AddDef("付费时间", "月") bd1.Groups.AddDef("付费时间", DateGroupEnum.Day, "日") bd1.Groups.AddDef("xq","星期") |
-- 作者:有点蓝 -- 发布时间:2020/10/9 16:16:00 -- 统计结果是数值列(整数或者双精度)不是字符列,无法格式化。 如果只是为了显示,而不是改变值。可以到drawcell事件处理
|