Hi,
I've got a table with a lot of raw data which looks something like:
==
TypeID, Amount
--
1, 200
1, 300
1, 100
2, 400
2, 500
8, 300
==
and I want another table in another sheet in the same workbook with data like this:
==
TypeID, Amount
--
1, 600
2, 900
3, 0
4, 0
5, 0
6, 0
7, 0
8, 300
9...