找回密码
 立即注册

QQ登录

只需一步,快速开始

zheng_hq
银牌会员   /  发表于:2011-11-15 08:31:00
11#
原帖由 iceman 于 2011-11-14 18:42:00 发表
你好,你的格式化字符串设置错误,没有显示结果参数,这样修改:
  1. FpSpread1.ActiveSheet.ColumnFooter.SetAggregationFormat(0, 7, "max(h1,h720)")
复制代码
修改为
[code]
         FpSpr......



: {0}"   是起什么作用呢?
回复 使用道具 举报
zheng_hq
银牌会员   /  发表于:2011-11-15 13:43:00
12#
Hello,

You can try using the last row of the Spread as ColumnFooter using FrozenTrailingRowCount property and use the SubTotal formula in that row. Code for the same is given below:


            fpSpread1.ActiveSheet.FrozenTrailingRowCount = 1;
            int num = fpSpread1.Sheets[0].RowCount - 1;
            fpSpread1.Sheets[0].Cells[fpSpread1.ActiveSheet.Rows.Count-1,1].Formula = "SUBTOTAL(1,B1:B" + num + ")";

Hoe this will help you. Thanks


--------------------------------------------------------------------------------
Reeva Dhingra
GrapeCity FarPoint
回复 使用道具 举报
iceman
社区贡献组   /  发表于:2011-11-15 18:24:00
13#

回复 12# zheng_hq 的帖子

回复 使用道具 举报
12
您需要登录后才可以回帖 登录 | 立即注册
返回顶部