estoy tratando de totalizar una columna en xbrowse pero me tira este error:
AGGR_SUM , totaliza la columna por si sola?
- Code: Select all Expand view
XBrNumFormat( 'A', .t. )
REDEFINE XBROWSE oBrwDet ; //19
FIELDS DETPARTET->articu ;
,Articulo->DesG ;
,DETPARTET->Cantid ;
,articulo->Cap*DETPARTET->Cantid ;
,DETPARTET->Precio ;
,round((articulo->Cap*DETPARTET->Cantid)*DETPARTET->Precio,2) ;
FIELDSIZES 65,200,70,70,70,70 ;
HEADERS "Codigo" ;
,"Descripción" ;
,"Cant." ;
,"Metros" ;
,"Precio" ;
,"Importe" ;
ID 4001 OF oDlgDet ;
LINES CELL NOBORDER UPDATE FOOTERS
WITH OBJECT oBrwDet
:aCols[3]:nFooterType := AGGR_SUM
:MakeTotals()
END