- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 12:25 PM
Hello
I am trying to use 2 other list collector variables in order to filter down a 3rd list collector. I am having trouble building the reference qualifier needed to filter down the 3rd collector.
Here is the current attempt at the reference qualifier.
I have also tried to use a script include called by the reference qualifier.
Here is the script include.
I can get the function to be called, but it gets called before the country and location fields are filled in, so nothing gets filtered out. I am a little stumped.
Any assistance would be greatly appreciated.
Thank you in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 12:48 PM
Hi @Josh Evans,
Nothing seems out of the ordinary but I can see that you are referencing a custom table.
If so, are you certain the field names (location, country) are correct?
Should they be something like u_location and u_country instead?
If that doesn't work, try generating the query via copying a query from a list view -
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 12:48 PM
Hi @Josh Evans,
Nothing seems out of the ordinary but I can see that you are referencing a custom table.
If so, are you certain the field names (location, country) are correct?
Should they be something like u_location and u_country instead?
If that doesn't work, try generating the query via copying a query from a list view -
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 12:55 PM
Yup, that was exactly it, thank you James! Is there a way in the reference qualifier to account for multiple selections, would it be something like "countryIN" instead of "country="?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 01:01 PM
Yup, make sure you dot-walk to one of its attributes first.
e.g.
country.sys_idINsys_id1,sys_id2... OR
country.nameINname_1,name_2....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 01:06 PM
You are a lifesaver, thank you so much!