Foxtable(狐表)用户栏目专家坐堂 → [求助]实现打印百分比、每页都显示标题


  共有30人关注过本帖树形打印复制链接

主题:[求助]实现打印百分比、每页都显示标题

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:111886 积分:569584 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2025/1/17 9:41:00 [显示全部帖子]

1、
        For r As Integer = 0 To tb.Rows.Count - 1 '开始填入该列内容
If tb.Cols(c).name Like "*率*" Or tb.Cols(c).name Like "*占比*" Or tb.Cols(c).name Like "*拉动*" Then
rt.Cells(r + hd, cnt).Text = format(tb(r, c),"0.00%") 'http://www.foxtable.com/webhelp/topics/0361.htm
else
            rt.Cells(r + hd, cnt).Text = tb(r, c)
end if
        Next

2、参考这里:http://www.foxtable.com/webhelp/topics/2735.htm,把标题作为表格的一部分

 回到顶部