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
 
Dominique said:
you can use AND, OR, and NOT as boolean operators
"columnName1 LIKE '...' AND columnName2 LIKE '...'"

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

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