Hi @Don75 ,
Have you considered using the DataTable.Select Method?
Dim rows As DataRow() = dataTable.Select("ColumnName1 > 10 AND ColumnName2 < 5")
Dim rows As DataRow() = dataTable.Select("ColumnName LIKE 'ABC%'")
Best Regards.
Jiachen Li
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.