Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Total Columns

Status
Not open for further replies.

goodspeed7

Programmer
Sep 1, 2005
15
US
I need a way for totaling columns. Currently i have I have data that looks like so

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
 
Yes that would be good if i was writing a stored procedure to do it, but i want to do it in RS after all parameters have filtered the data.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top