Search found 13 matches: lpagetotal

Return to advanced search

Consulta Total Final en REPORT *SOLUCIONADO*

... Grupo, y esta perfecto. Lo que necesito es que no me imprima el Total General del Reporte al final del informe. Aun cuando tengo "oReporte:lPageTotal:=.f. ", igual se imprime el valor total acumulado. Muchos Saludos Antonio Codigo:    REPORT oReporte;                    TITLE cTi1,"EMPRESA ...
by remtec
Thu Jun 16, 2022 5:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta Total Final en REPORT *SOLUCIONADO*
Replies: 4
Views: 387

REPORT TO EXCEL NO AGRUPA

... : "+STRZERO(oReport:aGroups[1]:nCounter,4) FONT 1 END REPORT oReport:bInit:={|| ::oSql:GOTOP() } oReport:bSkip:={|| ::oSql:SKIP() } oReport:lPageTotal:=.F. oReport:cGrandTotal:="TOTALES:" ACTIVATE REPORT oReport WHILE !::oSql:Eof(); ON STARTGROUP EVAL({|| nSaldo:=::oSql:saldoini,oReport:NewLine(),oReport:SAY(9,"SALDO ...
by cjcardoza
Wed Feb 18, 2015 2:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: REPORT TO EXCEL NO AGRUPA
Replies: 0
Views: 635

Re: Report

Hola Arvisnet,

Si estas usando el REPORT, solo debes usar:

oReport:lPageTotal:=.F.

y listo!!

Quizás aun te sirva.

Saludos,
by Kleyber
Tue Oct 15, 2013 10:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Report
Replies: 2
Views: 498

Como hacer esto

... FONT 1 GROUP ON .T. HEADER "Saldo inicial al "+DTOC(dF1) IF(lCUADRIC,oReport:CellView(),) END REPORT oReport:lPageTotal:=.F. ACTIVATE REPORT oReport FOR FIELD->FECHA>=dF1 .AND. FIELD->FECHA<=dF2 ON INIT (oReport:Say(5,TRANSFORM(nSal,'99999,999.99'),2,2)) ...
by JoseGS
Wed Dec 15, 2010 10:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como hacer esto
Replies: 4
Views: 1136

Ayuda quien tiene el REPORT.prg Para Que funcione ADO 100%

... FONT 1 SIZE 6 GROUP ON CODPROV // DEFINO EL ROMPIMIENTO SIN NECESIDAD DEL DO WHILE END REPORT ACTIVATE REPORT oReport ON ENDPAGE oReport:lPageTotal:= .f. ; ON STARTGROUP( oReport:NewLine(), oReport:EndLine(), oReport:Say(0,"CLIENTE : " +codprov+"-"+ALLTRIM(codprov),4,,oReport:nRow), ...
by ruben Dario
Mon Mar 15, 2010 10:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda quien tiene el REPORT.prg Para Que funcione ADO 100%
Replies: 0
Views: 324

Re: Ultimo condigo fuente rpreview

... 1 SIZE 20 COLUMN TITLE "Largo/Alt" DATA largo,ancho FONT 1 SIZE 8 GROUP ON CODPROV END REPORT ACTIVATE REPORT oReport ON ENDPAGE oReport:lPageTotal:= .f. ; ON STARTGROUP( oReport:NewLine(),; oReport:EndLine(),; oReport:Say(0,"CLIENTE : " +codprov+"-"+ALLTRIM(codprov),4,,oReport:nRow),; ...
by ruben Dario
Fri Mar 12, 2010 8:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ultimo condigo fuente rpreview
Replies: 14
Views: 2525

Re: REPORT IMPRIMIR EN 2 LINEAS UN REGISTRO

... TOTAL GROUP ON C->CODIGO // DEFINO EL ROMPIMIENTO SIN NECESIDAD DEL DO WHILE END REPORT ACTIVATE REPORT oReport ON ENDPAGE oReport:lPageTotal:= .f. ; ON STARTGROUP( oReport:NewLine(),; oReport:EndLine(),; oReport:Say(0,"CLIENTE : " +C->CODIGO+"-"+ALLTRIM(C->NOMBRES),4,,oReport:nRow),; ...
by Ramon Paredes
Sat Feb 27, 2010 2:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: REPORT IMPRIMIR EN 2 LINEAS UN REGISTRO
Replies: 5
Views: 2098

Ayuda con TReport

... ); ON ENDGROUP ( oReport:nPage:=0, Eval(bCabez)); ON END oReport:lTotal:=.f. ; //No imprimir el gran total en la ultima pagina ON ENDPAGE oReport:lPageTotal:=.f. //No imprimir el acum en cada pagina oFont:End() oFont1:End() oFont2:End() oPen1:End() RETURN NIL
by FranciscoA
Thu Feb 18, 2010 10:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con TReport
Replies: 2
Views: 914

Re: Total en los grupos

... de pagina es el siguiente: static function Mirasipagina(oPrint,o) if o:PaginaPor $ "Ss" oPrint:EndPage() oPrint:nGroupLine:=RPT_NOLINE oPrint:lPageTotal:=.t. end if return GRACIAS Aqui tienes un ejemplo completo. Ajustalo a tus necesidades. //------------------------------------------------------------------------- ...
by FranciscoA
Tue Dec 02, 2008 6:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Total en los grupos
Replies: 3
Views: 1180

Total en los grupos

... de pagina es el siguiente: static function Mirasipagina(oPrint,o) if o:PaginaPor $ "Ss" oPrint:EndPage() oPrint:nGroupLine:=RPT_NOLINE oPrint:lPageTotal:=.t. end if return GRACIAS
by cgomez
Tue Dec 02, 2008 5:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Total en los grupos
Replies: 3
Views: 1180

... de última página) ACTIVATE REPORT oReport ...... ON END oReport:lTotal:=.f. Total por pagina: ACTIVATE REPORT oReport ...... ON ENDPAGE oReport:lPageTotal:=.f. Gracias a todos, y especialmente... Gracias amigo Keyber.
by jose_murugosa
Fri Aug 24, 2007 11:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Suprimir total de un grupo en treport
Replies: 2
Views: 793

Modifica la Propiedada lPageTotal

... ando como en antaño ayudando en lo que se puede. Es muy sencillo quitar los totales de cada página, el Objeto Report tiene una propiedad llamada lPageTotal ( true, false ) oReport:lPageTotal = .t. // Pone Totales oReport:lPageTotal = .f. // NO Pone Totales Revisa en Sources/Classes las propiedades ...
by rbt
Wed Aug 01, 2007 7:39 pm
 
Forum: FiveWin para CA-Clipper
Topic: Quitar los Suma y Sigue de un reporte
Replies: 1
Views: 874

Re: How to suppress Grand Total in Report Class ?

Hello, you can try with some of the follow code blocks bpostgroup, bend, bpostend and define data :ltotal := .F. or :lpagetotal := .F. I hope this can help you regards Marcelo Dear All, I want to page Pagewise Total but not Grand Total ? How can I achieve it ? I am printing Report ...
by Marcelo Via Giglio
Fri Jun 02, 2006 4:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to suppress Grand Total in Report Class ?
Replies: 2
Views: 921

Return to advanced search