J
J Miller
I would like load a table in Access 2000 from an Excel Spreadsheet using
DAO. Something like this:
dim db as database
dim rs as recordset
set db = currentdb
set rs = db.opendatabase("mytable")
open spreadsheet/worksheet
read each spreadsheet record
mytable.addnew
add the fields from the spreadsheet
mytable.update
How do I open the spreadsheet, point to the correct worksheet, and read each
record?
Many many thanks.
Jeff
DAO. Something like this:
dim db as database
dim rs as recordset
set db = currentdb
set rs = db.opendatabase("mytable")
open spreadsheet/worksheet
read each spreadsheet record
mytable.addnew
add the fields from the spreadsheet
mytable.update
How do I open the spreadsheet, point to the correct worksheet, and read each
record?
Many many thanks.
Jeff