I have a Datagridview in my C# program that contain numeric data.
I need to sum all column A and all column B.
(I don't want to use any SQL queries.)
How Do I do this?
Thanks in advance.
|
I have a Datagridview in my C# program that contain numeric data. I need to sum all column A and all column B. (I don't want to use any SQL queries.) How Do I do this? Thanks in advance. |
|||||||||
|
|
Use Or if you know the exact type in DataSource, you can aggregate the data using specific methods of the object in there (even use the Enumerable.Sum Method if possible). or
|
||||
|
|
|
If your Datagrid is bound to a DataTable, another option is to use the Datatable.Compute() method. http://msdn.microsoft.com/es-es/library/system.data.datatable.compute%28VS.80%29.aspx
|
||||
|
|