Hi,
I have a list of codes (column A), and amounts of money (Column B).
I would like to sum all of the codes but where the codes are the same, only have the sum for the first instance of that code from the list.
eg see the example below
TIA
I have a list of codes (column A), and amounts of money (Column B).
I would like to sum all of the codes but where the codes are the same, only have the sum for the first instance of that code from the list.
eg see the example below
TIA
CODE | AMOUNT | RESULT |
CAT | 5 | 11 |
DOG | 6 | 16 |
RABBIT | 4 | 4 |
FISH | 5 | 5 |
PIG | 7 | 7 |
DOG | 6 | 0 |
HAMPSTER | 8 | 8 |
GUINEA PIG | 3 | 3 |
DOG | 4 | 0 |
CAT | 6 | 0 |
HEDGEHOG | 5 | 5 |