Hi Team,
I want to add blank rows after particular value ends in a column.
Input:
Output:
Please help.
Hi Team,
I want to add blank rows after particular value ends in a column.
Input:
Output:
Please help.
@Yoichi Any help regarding this issue?
Dt=(From row In inputDataTable.AsEnumerable()
Let rank = row("Rankings").ToString()
Let count = inputDataTable.AsEnumerable().Count(Function(r) r("Rankings").ToString() = rank)
Let newRow = If(count >= 1 AndAlso row.Equals(inputDataTable.AsEnumerable().Last(Function(r) r("Rankings").ToString() = rank)), inputDataTable.NewRow(), Nothing)
Select row, newRow).SelectMany(Function(x) If(x.newRow IsNot Nothing, {x.row, x.newRow}, {x.row})).CopyToDataTable()
Hi,
FYI, another approach:
dt = dt.AsEnumerable.GroupBy(Function(r) r("Ranking").ToString).SelectMany(Function(g) g.Concat({dt.NewRow})).CopyToDataTable
Sample
Sample20240202-2.zip (8.6 KB)
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.