Table Card Total Rows Incorrect
I am trying to create a table card summarizing this data by Date and Department:
Summarized the table looks like the following:
How can I get the total rows to be correct on the card? I want the ability for the user to be able to drill down into a department and see a list of employees.
Thank you in advance for your assistance.
-----------------
Chris
Best Answers
-
Ahh, I see what is happening here. You have duplicates in your dataset because of the employee id. You won't be able to achieve the result using total row as that is going to either sum or count the fields you have inputted. You will need to create a row in your dataset where you do the aggregation for grand total using a MySQL dataflow or Magic ETL.
You would aggregate it by date and put the "grand total" text under the department field and sum the max values of each department for a specific date, then union it to your final dataset.
Thanks,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
I'll take a stab at this one...
Try creating new beast modes to calculate staffing level and number of employees
Staffing Level:
sum(staffing_level) / count(distinct ifnull(EmpID,1))
Number of Employees:
count(distinct ifnull(EmpID,0))
Then use these fields in your table instead of the current fields you are using.
You should then still be able to drill down and see EmpID if needed
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman2
Answers
-
Hello,
I think you need to change your calculation to sum or count for staffing_level and no_employees by clicking the little pencil button when you hover.
Hope this helps,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Ahh, I see what is happening here. You have duplicates in your dataset because of the employee id. You won't be able to achieve the result using total row as that is going to either sum or count the fields you have inputted. You will need to create a row in your dataset where you do the aggregation for grand total using a MySQL dataflow or Magic ETL.
You would aggregate it by date and put the "grand total" text under the department field and sum the max values of each department for a specific date, then union it to your final dataset.
Thanks,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Brian,
I could create and add total rows to the dataflow but then my card has no dynamic capabilities and any card filtering at the department level will not be reflected in the totals.
Originally this card was summarized at the daily level and subtotals/totals worked fine but users are requesting the ability to drill down into the detail of each department and view employees in that total.
Any recommendations how I can summarize the card without losing the ability to drill down to the details?
Thank you,
Chris
-----------------
Chris0 -
I'll take a stab at this one...
Try creating new beast modes to calculate staffing level and number of employees
Staffing Level:
sum(staffing_level) / count(distinct ifnull(EmpID,1))
Number of Employees:
count(distinct ifnull(EmpID,0))
Then use these fields in your table instead of the current fields you are using.
You should then still be able to drill down and see EmpID if needed
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman2 -
Getting closer but still a strange total on the staffing_level beast mode.
Here are the beast modes I am using
staffing_level
sum(`staffing_level`)/count(distinct ifnull(`EmpID`,1))
number_employees
count(distinct `EmpID`)
** I had to remove the ifnull() because it was causing null records to be counted as 1 **
-----------------
Chris0 -
You could try this ... the only issue will be is if two department staffing levels are the same, then it will calculate incorrectly.
sum(distinct `staffing_level`)/count(distinct `EmpID`)
Thanks,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Another alternative would be a window function. I have never actually tried to use this in beastmode but it would look something like ...
CASE WHEN `EmpID` IS NULL
THEN staffing_level
ELSE SUM(distinct staffing_level) OVER (PARTITION BY department)
/count(distinct `EmpID`)
ENDThanks,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Wait a second,
Why are we trying to divide staffing level? Is it just supposed to be a sum of total employees needed?
in this scenario, you can just do SUM(DISTINCT staffing_level)
Thanks,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Brian,
sum(distinct `staffing_level`) will not work correctly if two departments have the same staffing level. We are attempting to sum all rows and divide it by the number of employees. This works for each row but the grand total row for some reason is not a whole number.
In this example using the Main Bar department the sum(`staffing_level`) = 12 and count(distinct `empID`) = 3 and 12/3=4 which is the number I expect. This does not explain why the total row is incorrect on the table where it should be adding 4+6+2 = 12 but is displaying 4.57??
-----------------
Chris0 -
The total row is just completing whichever calculation you give it on an aggregate level. So when you have sum(staffing_level) / count(distinct ifnull(empID,1)), your total row is doing 4+4+4+6+6+6+2 = 32 / 7 = 4.57.
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
This is why in one of my first posts I mentioned you may want to create an "All Corporate" department, which has the totals already calculated. You can then put together a table like the attached image using MAX(staffing_level) and MAX(no_employees) as your two fields.
Hope this helps,
Brian
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
It is important that the totals remain calculated on the fly due to PDP policies and applying card filters. I was able to create the card with the correct totals and the drill down functionality by editing my dataflow to stage the data differently so I could sum all of the fields.
Thank you all for the feedback and ideas. I love to use the Dojo as a sounding board when I get stuck!
-----------------
Chris1 -
Can you make the replies that best helped you by clicking on Accept as Solution so others can benefit from this thread.
Love the collaboration! NIce work @Property_Ninja and @ST_-Superman-_!
Regards,
2 -
I marked solutions by both @Property_Ninja and @ST_-Superman-_ as they both helped me in arriving at the final solution.
Thanks again.
-----------------
Chris1 -
Thank you!
0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 738 Beast Mode
- 56 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive