I'm sure someone has a much better solution, but this is what I'd use:
create table #customers (Account int, TrxDate date, TrxAmt decimal(9,2))
insert into #customers values (123, '10/02/2011', 48.00)
insert into #customers values (123, '10/18/2011', 52.00)
insert into #customers values (123...