filtering in datatable

  • Thread starter Thread starter jesusR
  • Start date Start date
J

jesusR

I have a datateble with data, i need to filter that data with some
condition.

What can i do???
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top