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%'
advanced expression in filter criteria
-
- Posts: 27
- Joined: Mon Sep 02, 2019 11:24 am
advanced expression in filter criteria
Last edited by john (from OnePacs) on Thu Sep 05, 2019 11:46 pm, edited 2 times in total.
Reason: typo
Reason: typo
-
- Posts: 195
- Joined: Wed Jun 20, 2012 5:14 am
Re: advance expression in filter criteria
You can do that with "and"s as follows:
Code: Select all
uploadedBy contains 'username' and facilityName contains 'facilityname' and institutionName like '%test%'
-
- Posts: 27
- Joined: Mon Sep 02, 2019 11:24 am
Re: advance expression in filter criteria
Thank you.