Skip to main content

I have a Tableau dataset with these fields:

  1. Manager
  2. Family Name
  3. Client ID

I’ve already managed to create a view that lists the top 10 family names by client count for each manager, like this: and I need help on the below insert a subtotal row for each manager - the subtotal should give top 10 total rather than overall total ..i tried several methods it is giving overall total ..please help

 

Manager | Family Name | Client Count

--------+-------------+--------------

A | Smith | 50

A | Johnson | 42

... (up to 10 rows)

B | Patel | 60

B | Kumar | 45

... (up to 10 rows)

Now I’d like to insert a subtotal row for each manager, summing only those top‑10 family counts. For example:

 

Manager | Family Name | Client Count

--------+-------------+--------------

A | Smith | 50

... | ... | ...

A | (Subtotal) | 420

B | Patel | 60

... | ... | ...

B | (Subtotal) | 500

2 answers
0/9000