Hi @Dang_Ngoc_Duy_DPS.VN.MSG
You can proceed like this
The LINQ query used is given below
(
From row In dt_Data
Group row By k=row("Manager Account").ToString.Trim
Into grp=Group
Select dt_GroupedData.Rows.Add({k, String.Join(", ",grp.Select(Function(gr) String.Join("-",gr.ItemArray)))})
).CopyToDataTable
Please read the post by @ppr
This HowTo introduces on the different options for grouping data from a datatable in order to process the grouped data.
Introduction
Grouping data and processing the grouped data is a common scenario e.g. when the grouped data is to aggregate like summing up, find maximum, get the average or concatening items.
Lets have a look on following data:
[grafik]
A possible scenario could be:
Create a report containing following information:
the region code
the sum of CaseCount per RegionCode
t…
Xaml File for reference
GroupByUsingLINQ.xaml (6.6 KB)
1 Like