J jesusR Mar 13, 2006 #1 I have a datateble with data, i need to filter that data with some condition. What can i do???
A Anthony Merante Mar 13, 2006 #3 You can use the Select method of the DataTable to filter your datatable. Dim dr As DataRow() dr = dt.select("MYVAL = x") HTH, Tony merante
You can use the Select method of the DataTable to filter your datatable. Dim dr As DataRow() dr = dt.select("MYVAL = x") HTH, Tony merante