- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2022 01:21 AM
Hi,
I have a form with a list collector question pulling all users from the sys_user table.
I want to filter the list with two reference qualifiers. They work individually, but I can't find a way to combine them with an OR operator.
The following gives me incorrect results -
javascript:"u_in_active_directory=true || company.name="insurance company"'
Any help in determining what I'm doing wrong would be gratefully received.
Many thanks,
Mark.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2022 01:38 AM
javascript:'u_in_active_directory=trueORcompany.name=insurance company'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2022 01:29 AM
Try applying filter in the list view and copy the condition and paste here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2022 01:38 AM
javascript:'u_in_active_directory=trueORcompany.name=insurance company'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2022 01:38 AM
Hello,
navigate to list view of user table apply the filters as per you need and paste the encoded query on advanced reference qualifier.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2022 01:42 AM
Ah! So by viewing the users and applying a filter in the GUI, you can then copy the query by right clicking on the blue condition. I did that and got -
u_in_active_directory=true^ORcompany.name=insurance company
That's doing what I want now.
Fab.
Thank you!