Dataview RowFilter

  • Thread starter Thread starter Rohit
  • Start date Start date
R

Rohit

Hello,

I have a dataview which contains 10,000 rows and I have to apply a huge
rowfilter string which contains values for two columns each containing some
10,000 values,

So its like

dv.RowFilter = "A IN (1,2,.....) AND B IN (0.12,0.34,....)"

Any solution please?

Regards,
Rohit
 
Hi,

Yes, try like that.
Other than that you could add a DataColumn of type boolean, set its value
accordingly to your condition and filter by that value.
 
Back
Top