Let's say I have a dataset:
+--------+-------+----------+
| Animal | Price | FoodCost |
+--------+-------+----------+
| 1 | 23 | 22 |
| 1 | 32 | 33 |
| 1 | 7 | 69 |
| 2 | 45 | 55 |
| 2 | 432 | 82 |
| 2 | 33 | 34 |
| 3 | 67 | 44 |
| 5 | 671 | 62 |
| 8 | 234 | 43 |
+--------+-------+----------+
The result that I am looking for in my tablix is:
+--------+-------+----------+
| Animal | Price | FoodCost |
+--------+-------+----------+
| 1 | 62 | 124 |
| 2 | 510 | 171 |
| 3 | 67 | 44 |
| 5 | 671 | 62 |
| 8 | 234 | 43 |
+--------+-------+----------+
I understand how to do 1 aggregate, but how would I do 2 aggregates, namely, summing the price and the foodcost for each animal?