以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]为什么通过获取的列名来计算,计算不出来结果? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=135409) |
-- 作者:yjm789000 -- 发布时间:2019/5/25 17:49:00 -- [求助]为什么通过获取的列名来计算,计算不出来结果? [求助]为什么通过获取的列名来计算,计算不出来结果? For n As Integer = 3 To tbl.Cols.Count - 1 Dim ss As String = tbl.cols(n).Name sheet(cnt,n).Value = tbl.compute("Sum(Trim(ss))") Next 换成这样 sheet(cnt,n).Value = tbl.compute("Sum(消费金额)") ,却又可以的
|
-- 作者:有点甜 -- 发布时间:2019/5/26 14:35:00 -- 改成比如
For n As Integer = 3 To tbl.Cols.Count - 1
Dim ss As String = tbl.cols(n).Name
sheet(cnt,n).Value = tbl.compute("Sum(" & Trim(ss) & ")")
Next
|