goodspeed7
Programmer
I need a way for totaling columns. Currently i have I have data that looks like so
The report looks like this, How can i get the totals on the bottome????
Thanks in advance!
Bob
Code:
Customer PaymentType Amount
111 Credit 100.00
222 Account 100.00
333 Credit 100.00
444 Transfer 100.00
The report looks like this, How can i get the totals on the bottome????
Code:
Customer Credit Account Transfer
111 100.00
222 100.00
333 100.00
444 100.00
TOTALS:??? 200.00 100.00 100.00
Thanks in advance!
Bob