Linq Query to get the count of a value in particular column of datatable

Hi,

Can you try the following expression?

dt.AsEnumerable.Count(Function(r) r("Invoice Number").ToString="INV002")

Regards,

1 Like