Hi,
excel file, cell type normal .
itemid qty
001 1
002 1
010 8
oExcel := TOleAuto():New( "Excel.Application" )
oExcel:WorkBooks:Open(ALLTRIM(cfile))
oSheet := oExcel:ActiveSheet()
? oSheet:Cells(2,1):Value
//1.00
? oSheet:Cells(2,1):Value
//2.00
? oSheet:Cells(3,1):Value
//10.00
Best regards!
Shuming Wang