Exportar a Excel
Tengo un problemilla, yo filtro una vista con ciertos criterios, al dar un brow se ve la vusta filtrada, pero al exportar al excel me pasa siempre el primer dato de la tabal y no el dato filtrado, tengo k cerrar el excel y volver a exportar y recien me exporta los datos correctos. Mi codigo es algo asi:
SELE VCOLE
GO TOP
THISFORM.REFRESH
SET FILTER TO idalumno=Wcodigo
THISFORM.REFRESH
SELE VCER
local Fila
wait'Espere Un Momento Exportando Datos' window nowait
_screen.mousepointer=14
TmpSheet=CREATEOBJECT("Excel.Application")
XLApp=TmpSheet.Application
XLApp.visible=.T.
cFilename= "c:\certificado\datos1.xls"
XLApp.workbooks.Open(cFilename)
XLSheet=XLApp.ActiveSheet
XLSheet.Cells(14,3)=" " + THISFORM.TEXT2.VALUE
XLSheet.Cells(17,7)=Valum.AÑO1
XLSheet.Cells(17,8)=Valum.AÑO2
XLSheet.Cells(17,9)=Valum.AÑO3
XLSheet.Cells(17,10)=Valum.AÑO4
XLSheet.Cells(17,11)=Valum.AÑO5
y el asi sucesivamente.
ayuda plis y Gracias de Antemano
SELE VCOLE
GO TOP
THISFORM.REFRESH
SET FILTER TO idalumno=Wcodigo
THISFORM.REFRESH
SELE VCER
local Fila
wait'Espere Un Momento Exportando Datos' window nowait
_screen.mousepointer=14
TmpSheet=CREATEOBJECT("Excel.Application")
XLApp=TmpSheet.Application
XLApp.visible=.T.
cFilename= "c:\certificado\datos1.xls"
XLApp.workbooks.Open(cFilename)
XLSheet=XLApp.ActiveSheet
XLSheet.Cells(14,3)=" " + THISFORM.TEXT2.VALUE
XLSheet.Cells(17,7)=Valum.AÑO1
XLSheet.Cells(17,8)=Valum.AÑO2
XLSheet.Cells(17,9)=Valum.AÑO3
XLSheet.Cells(17,10)=Valum.AÑO4
XLSheet.Cells(17,11)=Valum.AÑO5
y el asi sucesivamente.
ayuda plis y Gracias de Antemano
1 Respuesta
Respuesta de keystone CITI
1