| A | B | C | |
|---|---|---|---|
| 1 | User | Task | Hours |
| 2 | Jim | AA-1 | 10 |
| 3 | Mike | AA-2 | 12 |
| 4 | Jim | AA-3 | 13 |
| 5 | Steve | CC-5 | 14 |
| 6 | Jim | BB-1 | 15 |
| 7 | Mike | BB-3 | 5 |
| 8 | Steve | BB-4 | 10 |
| 9 | Mike | CC-5 | 8 |
The table is way bigger and there are more than just AA, BB and CC type of tasks.
I want to be able to get how many hours Jim spent on tasks that start by AA* or BB*
This is simple with a sumifs but the problem is when I have 20 different type of tasks and I Want to get a lot of people results.
So I want to get in a row how many hours Jim spent on AA, BB and CC tasks and in the next row how many he spent on DD, EE, FF.
Basically I would like a sumif like (just look at the last part):
('SHEET1'!C:C,'SHEET1'!E:E,$B$3,'SHEET1'!G:G,"AA*,BB*,CC*")
Or even better if the AA*,BB*,CC* part were in another cell to easily change it.
