Hi,
How can I only keep the records where the count is the greatest?
Person | Sum_Total Hours | Count |
Louis Stevens | 40 | 35 |
Louis Stevens | 42 | 1 |
Joe Monroe | 30 | 1 |
Joe Monroe | 36 | 1 |
Joe Monroe | 37.5 | 4 |
output would be
Person | Sum_Total Hours | Count |
Louis Stevens | 40 | 35 |
Joe Monroe | 37.5 | 4 |
Two tools should accomplish this - “Sort” by Count Descending and then “Sample” the First N Records with N=1 and grouping by Person
User | Count |
---|---|
106 | |
82 | |
70 | |
54 | |
40 |