通过datarow中的乐队循环
我有以下代码,我试图在数据台上计数每个分组/频段下的行。目前,这是指定带索引中的所有行,并将该值返回到所有band1行中。我需要一种在band1中的每个频段下方计数行的方法,而不是band1下的所有行,然后将该值返回到每个摘要频段。这不是所需的最终结果,但是我认为,如果我只能让每个频段具有在其下的行中具有唯一值的值,而不是应用相同指定条件的所有行。
foreach (DataRow rows in dataSetDS.Tables["dataTable1_band1"].Select())
{
rows["column"] = dataSetDS.Tables["dataTable1_band2"].Rows.Count.ToString();
}
所需的输出:
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.
Desired output:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论