Hello I have a bunch of records which the amounts of those are needing to be summed based on their source.
i.e.
sum(amount) where source = 'DRS'
or sum(amount) where source = 'CASH', etc.
so basically I have a group of records
SUM
1000
2000
3000
4000
5000
how would I get the values summed together for all records of source CASH
thanks
i.e.
sum(amount) where source = 'DRS'
or sum(amount) where source = 'CASH', etc.
so basically I have a group of records
SUM
SOURCE1000
DRS2000
DRS3000
CASH4000
CASH5000
CASHhow would I get the values summed together for all records of source CASH
thanks