Is it possible to define and print subtotals in a group and at the end of a report?
Any exampes?
Thanks
Richard
report writer
Moderator: Rathinagiri
Re: report writer
Hola Richard, no se si estaré diciendo una tonteria pero mira esta parte de código, si te das cuenta aexiste una etiqueta llamada TOTALS....t57042 wrote:Is it possible to define and print subtotals in a group and at the end of a report?
Any exampes?
Thanks
Richard
DO REPORT ;
TITLE 'Contactos' ;
HEADERS {'','','','',''} , {'Apellido','Nombres','Calle','Numero','Tipo'};
FIELDS {'Contactos->Apellido','Contactos->Nombres','Contactos->Calle','Contactos->Numero','Tipos->Desc'};
WIDTHS {10,15,20,7,15} ;
TOTALS {.F.,.F.,.F.,.F.,.F.} ;
WORKAREA Contactos ;
LPP 50 ;
CPL 80 ;
LMARGIN 5 ;
PREVIEW
En Minigui->Samples->Basic->Contactos tienes el ejemplo completo, realizado por Roberto López.
Re: report writer
Muchas gracias,
But what I need is a solution for the REPORTS ADVANCED
Richard
But what I need is a solution for the REPORTS ADVANCED
Richard
Re: report writer
t57042 wrote:Muchas gracias,
But what I need is a solution for the REPORTS ADVANCED
Richard
En este topic viewtopic.php?f=5&t=1219&hilit=report+wizard Fernando creó un wizard de impresión donde se le puede especificar si totalizas, puedes mirar en el codigo fuente.
Un saludo cordial
Re: report writer
Thanks.
Other question - is it possible and how to force a page break (start a new page) after a
groupfooter is printed to have every group on another page?
Richard
Other question - is it possible and how to force a page break (start a new page) after a
groupfooter is printed to have every group on another page?
Richard