- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2019 05:55 AM
I am trying to create a cascading filter for locations, started at State / Provence, then City, and finally location name. My issue is I get multiple values for the same State / Provence. Is there any way to get the State / Provence values to just show up once?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2019 10:13 AM
Filters are designed to work on tables with a unique value. To get that to work as-is, you would need a custom filter. Alternatively, you could use the hierarchy to get the locations that are states (city is empty and state is not). Then get the locations that match, then go to the next level in the cascade.
I'm not sure of a simple solution here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2019 12:18 PM
Is this in sys_choice or on some fact table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2019 04:30 AM
We are trying to use the Location [cmn_location] table directly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2019 10:13 AM
Filters are designed to work on tables with a unique value. To get that to work as-is, you would need a custom filter. Alternatively, you could use the hierarchy to get the locations that are states (city is empty and state is not). Then get the locations that match, then go to the next level in the cascade.
I'm not sure of a simple solution here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2019 10:20 AM
Thanks for that answer Adam, that helps clear up my understanding of how filters work.
I agree it does not sound like a simple solution.