Let us assume to create datatable using build datatable activity and adding the values which you have mentioned
Then try this code
dtTest2 = (From p In dtTest1.Select
Group p By ID=Convert.ToString(p("Id")) Into GroupA= Group
Select dtTest1.Clone.Rows.Add(GroupA(0)("Id").ToString,GroupA.Sum(Function(r) r.Field(Of Int32)("Name")))).ToArray.CopyToDataTable
Using output datatable and print the value from datatable.(dttest2)