|
|
Re: total for each page [message #180261 is a reply to message #177492] |
Sun, 02 July 2006 07:02 |
harpreetsinghkup
Messages: 52 Registered: May 2006 Location: Mumbai
|
Member |
|
|
there r two main quastion that you want to running total per page or per page total
if u want running total per page,
then make a summary column based on page called as "p_tot" and make a user parameter as "run_tot",
now u must a job that
create a Cf
which is having the coding like that
:run_tot:=nvl(:run_tot,0)+nvl(:p_tot,0);
return :run_tot;
--------------------------------------------------------
secondly u must make a summary column as page wise total
have a make good day.
|
|
|