Any way to make DataView to filter for more than one column?

  • Thread starter Thread starter HAN(removethis)twister
  • Start date Start date
H

HAN(removethis)twister

Is there a way to make a DataView Row Filter filter for more than one
column? Thanks!
 
you can use AND, OR, and NOT as boolean operators
"columnName1 LIKE '...' AND columnName2 LIKE '...'"

dominique
 
maybe you got it from there (i did), the rowfilter property in dataview
refers to that document...
 
Back
Top