Foxtable(狐表)用户栏目专家坐堂 → 统计数据显示不正确


  共有2451人关注过本帖平板打印复制链接

主题:统计数据显示不正确

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


加好友 发短信
等级:一尾狐 帖子:452 积分:3015 威望:0 精华:0 注册:2014/4/23 17:12:00
统计数据显示不正确  发帖心情 Post By:2014/12/18 15:50:00 [只看该作者]

狐表右下角的StatusBar显示的统计数据会一闪而过,之前都是正常显示的,请问有可能是什么地方影响了统计数据的显示呢?
项目事件AfterSelRangeChange:
'右下脚计算圆整整数
Dim Sum,Average,Count As Integer
With CurrentTable
    Sum = .Aggregate(AggregateEnum.Sum, .TopRow, .LeftCol, .BottomRow, .RightCol)
    Average = .Aggregate(AggregateEnum.Average, .TopRow, .LeftCol, .BottomRow, .RightCol)
    Count = .Aggregate(AggregateEnum.Count, .TopRow, .LeftCol, .BottomRow, .RightCol)
End With
StatusBar.Message3 ="  累计:" & sum & "  平均:" & Average & "  计数:"  & Count

 回到顶部