How can I allow end user to "see all" rows?

Hi,
I would like to create a card that shows only 6 rows by default, but have the end user be able to choose to see all the rows (bascailly turning off the limited number of rows) without editing the card in the analyzer to see them. How do I do this?
Is there a filter I can set up to allow users to turn on or off the limited number of rows?
Best Answer
-
You could pull this off using variables as well as a window function to create a row count. To create a row count, create a beast mode like this:
SUM(SUM(1)) OVER(ORDER BY
Start
)Change Start to whatever field you need to order by in your dataset.
Create a variable control. I would use a radio button control that says "Show All Rows" and have Yes and No as values.
Now create a beast mode that you will drag into your filters that checks to see whether it should limit the rows or not. It would look like this:
CASE when
Show All Rows
= 'No' THEN
CASE when SUM(SUM(1)) OVER(ORDER BYStart
) <= 6 THEN 'Include'
ELSE 'Exclude'
END
ELSE
'Include'
ENDDrag this beast mode into your filter and then filter to Include.
Now you can toggle with the variable control to show all rows or just the first 6.
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.1
Answers
-
You could pull this off using variables as well as a window function to create a row count. To create a row count, create a beast mode like this:
SUM(SUM(1)) OVER(ORDER BY
Start
)Change Start to whatever field you need to order by in your dataset.
Create a variable control. I would use a radio button control that says "Show All Rows" and have Yes and No as values.
Now create a beast mode that you will drag into your filters that checks to see whether it should limit the rows or not. It would look like this:
CASE when
Show All Rows
= 'No' THEN
CASE when SUM(SUM(1)) OVER(ORDER BYStart
) <= 6 THEN 'Include'
ELSE 'Exclude'
END
ELSE
'Include'
ENDDrag this beast mode into your filter and then filter to Include.
Now you can toggle with the variable control to show all rows or just the first 6.
**Check out my Domo Tips & Tricks Videos
**Make sure toany users posts that helped you.
**Please mark as accepted the ones who solved your issue.1
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 666 Datasets
- 120 SQL DataFlows
- 2.3K Magic ETL
- 827 Beast Mode
- Visualize
- 2.6K Charting
- 90 App Studio
- 46 Variables
- Automate
- 198 Apps
- 489 APIs & Domo Developer
- 97 Workflows
- 24 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 118 Domo Everywhere
- 284 Scheduled Reports
- 11 Software Integrations
- Manage
- 145 Governance & Security
- 13 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 117 Community Announcements
- 5K Archive