新手help:excel to vfp 的问题
如下 a.xls(A1)---> b.dbf(cusid)
a.xls
A1
潮州
南京
天母
b.dbf
栏位 cusid
潮州
南京
天母
请问如何把excel A1整列资料转入b.dbf指定的cusid栏位呢!?
[解决办法]
都是第一列的话。
use b.dbf
append from a.xls type xls
[解决办法]
local arrRecList
local oExcel
oExcel=createobject( "excel.application ")
oExcel.visible=.f.
oExcel.workbooks.open( "a.xls ")
arrRecList=oExcel.usedrange.value &&假设表中只有此一列
oExcel.quit
insert into b from array arrRecInfo