Limiting Pivot Values
I have a pivot table that I am creating with rows broken down into 2 dimensions and values as the count of a 3rd dimension. I would like the output only to display the top 3 Dimension B's for each Dimension A. Below is a screenshot of my current table (intentionally blurred). I would like to display only the highlighted parts of the table. Any ideas how I might go about this?
Thanks!
pivot example
Best Answer
-
@Cartergan wrote:You can try limiting the data rows and see if this achieves the result you are looking for. In the analyzer view near the bottom right of the screen you can set how many rows you'd like to show, and then you'd need to sort your results how you'd like them to appear.
I would be unsurprised if this method yielded unexpected results, so test carefully. I do not believe that LIMIT N rows would distribute across all the dimension members (combinations of Cat1 > Cat2). More likely, if it's anything like SQL, i suspect it would just take the first N rows without respect to distribution. an explicit ORDER BY clause may appear to help, but i would proceed with caution.
Given my assumption is true, you could try to use logic to force the visualization you want.
"for each cat1 i want to keep the 3 highest ranked rows."
you could try to calculate RANK() and THEN assign a value based on RANK (using a CASE) and set a LIMIT based on a predefined number of CAT1 rows * 3 rank ( ex. LIMIT = 4 *3)
FIRST calculate RANK
rank() over (partition by cat1 order by sum(amount) desc)
THEN assign amount_value based on CASE
CASE WHEN rank() over (partition by cat1 order by sum(amount) desc) > 4 then -1000 else sum(amount) end
I didn't test this pseudo code at all... but the idea is, if the row_rank is greater than 4 then you want to exclude it, so you assign it an extreme value. If you're limiting rows, then all extreme values should hopefully be excluded. I chose row_rank = 4 in the unlikely event of ties, but that messes with your LIMIT.
To use windowed functions in beast modes email your CSM (customer success manager) and ask them to enable 'windowed functions in beast modes'.
Additionally, cc @MarkSnodgrass , @DataMaven , @GrantSmith @swagner , you can ask your CSM to enable 'filter on aggregates' which would allow you to filter on the HAVING clause of a SQL statement in your cards. I personally recommend this with EXTREME caveats insofar as, AFAIK this functionality was rapidly implemented and not thoroughly integrated into card builder. so... use at your own risk and test it a lot.
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"5
Answers
-
You can try limiting the data rows and see if this achieves the result you are looking for. In the analyzer view near the bottom right of the screen you can set how many rows you'd like to show, and then you'd need to sort your results how you'd like them to appear.
0 -
@Cartergan wrote:You can try limiting the data rows and see if this achieves the result you are looking for. In the analyzer view near the bottom right of the screen you can set how many rows you'd like to show, and then you'd need to sort your results how you'd like them to appear.
I would be unsurprised if this method yielded unexpected results, so test carefully. I do not believe that LIMIT N rows would distribute across all the dimension members (combinations of Cat1 > Cat2). More likely, if it's anything like SQL, i suspect it would just take the first N rows without respect to distribution. an explicit ORDER BY clause may appear to help, but i would proceed with caution.
Given my assumption is true, you could try to use logic to force the visualization you want.
"for each cat1 i want to keep the 3 highest ranked rows."
you could try to calculate RANK() and THEN assign a value based on RANK (using a CASE) and set a LIMIT based on a predefined number of CAT1 rows * 3 rank ( ex. LIMIT = 4 *3)
FIRST calculate RANK
rank() over (partition by cat1 order by sum(amount) desc)
THEN assign amount_value based on CASE
CASE WHEN rank() over (partition by cat1 order by sum(amount) desc) > 4 then -1000 else sum(amount) end
I didn't test this pseudo code at all... but the idea is, if the row_rank is greater than 4 then you want to exclude it, so you assign it an extreme value. If you're limiting rows, then all extreme values should hopefully be excluded. I chose row_rank = 4 in the unlikely event of ties, but that messes with your LIMIT.
To use windowed functions in beast modes email your CSM (customer success manager) and ask them to enable 'windowed functions in beast modes'.
Additionally, cc @MarkSnodgrass , @DataMaven , @GrantSmith @swagner , you can ask your CSM to enable 'filter on aggregates' which would allow you to filter on the HAVING clause of a SQL statement in your cards. I personally recommend this with EXTREME caveats insofar as, AFAIK this functionality was rapidly implemented and not thoroughly integrated into card builder. so... use at your own risk and test it a lot.
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"5 -
@jaeW_at_Onyx - YOU ROCK!
0 -
@jaeW_at_Onyx wondering if I can ask for an example of the basic syntax for including the HAVING clause.
Example for me would be filtering on orders that total more than $100,000. In my data orders can consist of 1 or many line items. I would SUM the 'sales' dollars for each order, and then include those HAVING SUM('sales') >100000.
Let me know.
0 -
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"1
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 296 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 614 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 729 Beast Mode
- 53 App Studio
- 40 Variables
- 677 Automate
- 173 Apps
- 451 APIs & Domo Developer
- 45 Workflows
- 8 DomoAI
- 34 Predict
- 14 Jupyter Workspaces
- 20 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 121 Manage
- 118 Governance & Security
- Domo Community Gallery
- 32 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive