通过datarow中的乐队循环

发布于 2025-01-22 23:19:01 字数 774 浏览 0 评论 0原文

我有以下代码,我试图在数据台上计数每个分组/频段下的行。目前,这是指定带索引中的所有行,并将该值返回到所有band1行中。我需要一种在band1中的每个频段下方计数行的方法,而不是band1下的所有行,然后将该值返回到每个摘要频段。这不是所需的最终结果,但是我认为,如果我只能让每个频段具有在其下的行中具有唯一值的值,而不是应用相同指定条件的所有行。

foreach (DataRow rows in dataSetDS.Tables["dataTable1_band1"].Select())
            {
                rows["column"] = dataSetDS.Tables["dataTable1_band2"].Rows.Count.ToString();
            }

当前输出使用上面的语法为Excel。

所需的输出:

”在此处输入图像说明”

I have the following code where I am attempting to count the rows under each grouping/band in a DataTable. This is currently counting ALL rows in the specified band index and returning that value to all band1 rows. I need a way of counting rows under each band in band1 and not all rows under band1, then return that value to each summary band. This is not the end result desired but I think I can finish if I can just get each band to have a unique value for rows under it rather than all rows applying the same specified condition.

foreach (DataRow rows in dataSetDS.Tables["dataTable1_band1"].Select())
            {
                rows["column"] = dataSetDS.Tables["dataTable1_band2"].Rows.Count.ToString();
            }

Current output to Excel using syntax above.
enter image description here

Desired output:

enter image description here

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文