Forum Discussion
Anonymous
5 years agoNot applicable
Filtered and Summarized Data Table
Hello,
I'm looking for some help to filter and summarize my data. In the end, I'm looking to get Headcount by Project for each week. The issue is the Headcount is already summed and listed in each row, and therefore redundant. The scrubbed sample data is below, as is the table I think I need.
Here is what I have:
| Week | Project | Activity | Headcount |
| 1 | A | X | 7 |
| 1 | A | Y | 7 |
| 1 | B | Y | 4 |
| 1 | C | X | 5 |
| 1 | C | Y | 5 |
| 2 | A | Q | 8 |
| 2 | B | Q | 6 |
| 2 | B | R | 6 |
| 2 | C | Q | 3 |
Here is what I think I need:
| Week Number | Project | Headcount |
| 1 | A | 7 |
| 1 | B | 4 |
| 1 | C | 5 |
| 2 | A | 8 |
| 2 | B | 6 |
| 2 | C | 3 |
Anonymous ,
Table 2 = SUMMARIZE('Table', 'Table'[Week ], 'Table'[Project], 'Table'[Headcount])
2 Replies
- camargos88Community Champion
Anonymous ,
Table 2 = SUMMARIZE('Table', 'Table'[Week ], 'Table'[Project], 'Table'[Headcount]) - AnonymousNot applicable
Thank You!!!