Sorting data by first column name value and add 3 empty rows between them

Hi @ldiaz

Can you try this

filterDT.AsEnumerable.Sum(Function(x) if(IsNumeric(x(“Price”).ToString.Trim),CDbl(x(“Price”).ToString.Trim),0.0))

Thanks!