Hello,
I am wanting to insert a count formula that searches throughout an entire report, but is contained within a group. To explain, here is an example data set:
SalesmanID | ClientName |
1 | A |
2 | A |
3 | C |
1 | B |
2 | C |
1 | C |
My report is needing to be grouped by ClientName and should look like this:
----------------------------------------------
Client A
Salesman 1 F=3
Salesman 2 F=2
Client B
Salesman 1 F=3
Client C
Salesman 1 F=3
Salesman 2 F=2
Salesman 3 F=1
----------------------------------------------
Where F is equal to the amount of times "Salesman X" appears in the entire report. Using the COUNT and Running Total methods, I have only been able to count through the number of instances in each Client group, not through the entire report. Since I am dealing with a large number of salesman IDs, F must be dynamic. How should I go about writing this formula?
Thank you!