Amigos.
Estoy tratando de automatizar un reporte utilizando la function CELL() de Excel, sin resultados.
En alguna celda de Excel hago: (Excel en Español)
=CELDA("formato";I15) //Retorna un codigo corresp al numero de formato de la celda.
Ahora, desde Fivewin he intentado lo siguiente, sin éxito:
* msginfo( oExcel:Cell("format","I15") ) // Error Excel.Application/0 S_OK: CELL
* msginfo( oExcel:Cell("format", oSheet:Cells(nRowIniDat,10) ) ) // Error Excel.Application/0 S_OK: CELL
* msginfo( oExcel:Cell("format", oSheet:Range( oSheet:Cells(nRowIniDat,10) ) ) ) // Error Excel.Application:SHEETS/3 DISP_E_MEMBERNOTFOUND: RANGE
Cual es la manera correcta de utilizar esta function Excel, desde Fivewin?
Gracias.