以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]合计显示百分比的问题  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=134742)

--  作者:81538475
--  发布时间:2019/5/5 17:38:00
--  [求助]合计显示百分比的问题

合计可以显示百分比吗?

 


图片点击可在新窗口打开查看此主题相关图片如下:qq截图20190505173806.jpg
图片点击可在新窗口打开查看

 

另外一个问题,在systemidle 里面如何显示 所选的字符列的数量

 

Str1 = Str1 & "计数:" & t.Aggregate(AggregateEnum.Count, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol) & " "
Str1 = Str1 & "累计:" & t.Aggregate(AggregateEnum.Sum, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol) & " "
Str1 = Str1 & "平均:" & t.Aggregate(AggregateEnum.Average, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol) & " "
Str1 = Str1 & "最大:" & t.Aggregate(AggregateEnum.Max, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol) & " "
Str1 = Str1 & "最小:" & t.Aggregate(AggregateEnum.Min, t.TopRow, t.LeftCol, t.BottomRow, t.RightCol) & " "

 

[此贴子已经被作者于2019/5/5 17:40:52编辑过]

--  作者:有点甜
--  发布时间:2019/5/5 18:17:00
--  

1、如果是【合计行】不可以,参考

 

http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=121773&skin=0

 

2、【字符列】的数量,指什么?字符的个数的总和?