Page 1 of 1

advanced expression in filter criteria

Posted: Wed Sep 04, 2019 1:19 pm
by dkrichilski
Hello,

I have a problem with the advance expression. I have created some filters that they are individually valid; But it looks that I can only created one in the advance expression or maybe I have a mistake adding them to the box because the filter is not valid when I write more than one. Can you help me , Please. (note that is only in advance expression)

This are the example of what I did.

first in a list in separate lines.

uploadedBy contains '%username%'
facilityName contains 'facilityname'
institutionName like '%test%'

Second separated with ,

uploadedBy contains '%username%', facilityName contains 'facilityname', institutionName like '%test%'

Re: advance expression in filter criteria

Posted: Thu Sep 05, 2019 1:56 am
by john (from OnePacs)
You can do that with "and"s as follows:

Code: Select all

uploadedBy contains 'username' and facilityName contains 'facilityname' and institutionName like '%test%'

Re: advance expression in filter criteria

Posted: Thu Sep 05, 2019 7:04 pm
by dkrichilski
Thank you.