Is there a way to view all of my filters being applied to a table column?
Is there a way to view all of my filters being applied to a table column? I currently have 30 filters applied, but it only shows me 20 of them selected and 'and 10 more...'
Best Answer
-
I don't think you can force the UI to change behavior.
But if you're applying 20+ filters, that's probably very tedious for you and ultimately will be tedious for your end users.
Instead, consider building a beast mode with a CASE statement to capture your filter criteria.
CASE
WHEN filterColumn = 'a1' OR filterColumn = 'a2' OR filterColumn = 'a3' ... THEN 'keep'
ELSE 'toss'
END
Then apply a filter on keep / toss.
The nice thing about CASE statements is you can use the LIKE parameter to capture 'all rows that start with ... or all rows that end with.
CASE
WHEN filterColumn LIKE 'a%' then 'StartsWithA'
WHEN filterColumn LIKE '%b' then 'EndsWithB'
ELSE filterColumn
END
Hope that helps!
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Answers
-
Sorry, this is when I am under a Card in 'Edit Analyzer'
0 -
I don't think you can force the UI to change behavior.
But if you're applying 20+ filters, that's probably very tedious for you and ultimately will be tedious for your end users.
Instead, consider building a beast mode with a CASE statement to capture your filter criteria.
CASE
WHEN filterColumn = 'a1' OR filterColumn = 'a2' OR filterColumn = 'a3' ... THEN 'keep'
ELSE 'toss'
END
Then apply a filter on keep / toss.
The nice thing about CASE statements is you can use the LIKE parameter to capture 'all rows that start with ... or all rows that end with.
CASE
WHEN filterColumn LIKE 'a%' then 'StartsWithA'
WHEN filterColumn LIKE '%b' then 'EndsWithB'
ELSE filterColumn
END
Hope that helps!
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Categories
- 10.5K All Categories
- 8 Connect
- 918 Connectors
- 250 Workbench
- 470 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 477 Datasets
- 194 Visualize
- 253 Beast Mode
- 2.1K Charting
- 11 Variables
- 17 Automate
- 354 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 247 Distribute
- 63 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 174 Product Ideas
- 1.2K Ideas Exchange
- 12 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive