Please try the below sequence and you can delete all the rows with your required condition.
Please use this syntax in value to save (From row In dt1.AsEnumerable() Where Not (row.Field(Of String)("Column1") = "No") Select row).CopyToDataTable()
Here Column1 is your column name and dt1 is your datatable variable.
Sample Input:
Sample Output:
Regards