如何在列C#中仅添加数字

时间:2019-02-25 09:41:22

标签: c# oledb oledbconnection oledbdatareader

我想获得C#中DataTable列的总和。但是,我的列同时包含字符串和数字值。有没有办法只汇总在该列中找到的数值?

数据表

Column

hello
304
-312
213
bye

我尝试使用下面的代码,但是当单元格中的数值不是数值时,它将不起作用。

var total = dt.Compute("Sum(column)","");

4 个答案:

答案 0 :(得分:2)

我认为您不能在Compute中使用强制转换,因此解决方案可能是这样的(VB.net代码):

Dim dt As New DataTable
dt.Columns.Add("test")

dt.Rows.Add("hello")
dt.Rows.Add("304")
dt.Rows.Add("-312")
dt.Rows.Add("213")
dt.Rows.Add("bye")

Dim intTotal As Integer = 0

For Each dr As DataRow In dt.Rows

    Dim intValue As Integer = 0

    If Integer.TryParse(dr("test"), intValue) Then
        intTotal += intValue
    End If

Next dr

MsgBox(intTotal)

答案 1 :(得分:1)

decimal sum;
for (i=0;i<rows;i++)
{
  sum += decimal.TryParse(dt["Column"][i].ToString(), out var value) ? value : (decimal)0L;
}

答案 2 :(得分:1)

C#示例

Datatable dt = new DataTable()
dt.Columns.Add("test")
dt.Rows.Add("test2")
dt.Rows.Add("45")
dt.Rows.Add("12")
dt.Rows.Add("-213")
dt.Rows.Add("test3")

int total = 0

Foreach(DataRow dr in dt.Rows) {
    If (Integer.TryParse(dr("test")){
        total += dr("test").value)
    }
}

return total;

答案 3 :(得分:-1)

Compute方法允许类型转换。

var sum = dt.Compute("Sum(Convert(column, 'System.Int32'))");

您也可以使用LINQ:

int sum = dt.Rows.Select(dr=>(int)dr["column"]).Sum();

有关更多信息:MSDN