得到正确的列总和(coldfusion)

发布于 2024-11-06 20:10:54 字数 168 浏览 0 评论 0原文

我有一个按月列出产品的表,我找到了它们的行总和,我需要找到列总和,但我的列总和计数是错误的,我做错了什么?你可以在这里查看代码: http://jsfiddle.net/KRHbx/ 谢谢大家的帮助! ^.^

I have a table with products listed by month, i found row sum of them, and i need to find column sum, but my counts are wrong for column sums, what am i doing wrong? u can have a look at the code here:
http://jsfiddle.net/KRHbx/ thank you everyone for your help! ^.^

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

潇烟暮雨 2024-11-13 20:10:54

我认为你的问题就在这里,你指的是递增 p_index 的循环之外的 p_index 。所以它总是引用你的product_id_list 的最后一个元素。

<cfif isdefined('total2_#kk#_#p_index#') and evaluate('total2_#kk#_#p_index#') neq 0>
                        <cfset satis_oran= evaluate('total2_#kk#_#p_index#')>

I think your problem is here, you're referring to p_index outside of the loop that increments p_index. So it's always going to be referring to the last element of your product_id_list.

<cfif isdefined('total2_#kk#_#p_index#') and evaluate('total2_#kk#_#p_index#') neq 0>
                        <cfset satis_oran= evaluate('total2_#kk#_#p_index#')>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文