I have a DataTable and in that Table I have 2 Columns Task_Name and Hours.
Task_Name Hours
-----------------
Proj1 2
Proj2 3
Proj1 3
Proj1 2
Proj2 5
Now what I finally want is I want a DataTable which will result in:-
Task_Name Hours
------------------
Proj1 7(addition of hours related to Proj1)
Proj2 8(addition of hours related to Proj2)
I Hope I am Clear with my question.. How can I do that..??