Tengo problemas con las posiciones decimales con Xbrowse to Excel... (utilizo calc de LibreOffice)
También con el ejemplo repxb01.prg me ocurre lo mismo, la columna SALARY no lo envía al fichero XLS en formato numerico
Gracias por vuestra ayuda, saludos,
[/img]
Code: Select all
/*
*
* repxb01.prg
* Demonstrate the use of command XBREPORT
*
*/
#include "FiveWin.Ch"
#include "ord.ch"
#include "xbrowse.ch"
//----------------------------------------------------------------------------//
REQUEST DBFCDX
//----------------------------------------------------------------------------//
function Main()
local oTmp, oRs
SET DATE ITALIAN
SET CENTURY ON
SET DELETED ON
SET EXCLUSIVE OFF
RDDSETDEFAULT( "DBFCDX" )
XbrNumFormat( 'A', .t. )
MsgInfo( "Quick Report from DBF" )
USE CUSTOMER NEW ALIAS CUST SHARED READONLY
XBREPORT oTmp TITLE "CUSTOMERS" ;
DATASOURCE "CUST" COLUMNS "FIRST", "LAST", "CITY", "STATE", "AGE", "SALARY" ;
BRWSETUP { |oBrw| oBrw:Salary:nFooterType := AGGR_SUM }
CLOSE CUST
return (0)
//----------------------------------------------------------------------------//