访问http://i.stack.imgur.com/pwGF3.png
我是VB.NET的新手,我想找到BatchIDs等于的数量之和。在此示例中,答案应为'PAN-NEW'= 4,VSD-1850 = 2 我的目的是在开票之前用当前库存检查结果。 如何在vb.net中执行此操作?请帮帮我
答案 0 :(得分:1)
循环遍历DataGridView并检查该行是否满足您的条件然后添加。
For each row as DataGridViewRow in DataGridView1.Rows
If row.Cells(2).Value = "PAN-NEW" Then
quantitySum = quantitySum + Integer.Parse(row.Cells(4).Value)
End if
Next