SOLVED
Getting data to only show one filter
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
etennison
5 - Atom
‎06-03-2024
02:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I am having trouble trying to figure out how to only show on category in my dataset instead of all categories.
This is what my data looks like.
This is what it is supposed to look like.
Solved! Go to Solution.
Labels:
- Labels:
- Datasets
3 REPLIES 3
18 - Pollux
‎06-03-2024
03:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I would do a Formula and just hard code "International Movies" into the [Category]
15 - Aurora
‎06-03-2024
04:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I guess you want to split each category into one row.
If so, "Text To Columns" tool with "Split to rows" option may work.
Input
type | title | columns | category |
Movie | aaa | xxx | ClassicMovies,Dramas,International Movies |
Movie | bbb | yyy | Comedies,Dramas,International Movies |
Configuration
Output
type | title | columns | category |
Movie | aaa | xxx | ClassicMovies |
Movie | aaa | xxx | Dramas |
Movie | aaa | xxx | International Movies |
Movie | bbb | yyy | Comedies |
Movie | bbb | yyy | Dramas |
Movie | bbb | yyy | International Movies |
I hope this helps.
‎06-04-2024
12:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Got this to work. Thank you
