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

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

HAN(removethis)twister

Is there a way to make a DataView Row Filter filter for more than one
column? Thanks!
 
D

Dominique Vandensteen

you can use AND, OR, and NOT as boolean operators
"columnName1 LIKE '...' AND columnName2 LIKE '...'"

dominique
 
H

HAN(removethis)twister

Dominique said:
you can use AND, OR, and NOT as boolean operators
"columnName1 LIKE '...' AND columnName2 LIKE '...'"

dominique
Thank you!
 
D

Dominique Vandensteen

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

Top