1. I need a TOTAL column that will sum the number of 'Runs' for each 'Group'. --> TOTAL for group A would be 5
2. I need to combine like terms in the 'Type' column if the 'Group' and 'Project' are identical. --> So Group A would be listed as
| A | Blue | Web, Mobile | 5 |
Group Project Type Runs --> these are the column headers
| A | Blue | Web | 2 |
| A | Blue | Mobile | 3 |
| B | Orange | Mobile | 1 |
| C | Red | Web | 4 |
| C | Red | Web | 3 |
| C | Pink | Web | 1 |
| D | Yellow | Mobile | 2 |