R
Ronald S. Cook
I have a DataTable that looks like this:
Id Value
123 4.0
123 5.0
234 1.0
345 2.0
345 3.0
I want to end up with (probably a new DataTable) that contains the sum of
values grouped by Id like this:
Id SumOfValue
123 9.0
234 1.0
345 5.0
Anyone know how to write this?
Thanks!
Id Value
123 4.0
123 5.0
234 1.0
345 2.0
345 3.0
I want to end up with (probably a new DataTable) that contains the sum of
values grouped by Id like this:
Id SumOfValue
123 9.0
234 1.0
345 5.0
Anyone know how to write this?
Thanks!