Import Array into Table

Lenny_821

New member
Local time
Today, 14:41
Joined
Sep 14, 2005
Messages
9
Hi All,

I've got an Array which I want to import into a table. How can I do that?

Lenny:)
 
hi Lenny_821,

you may do that with a for cycle

for i=0 to <array_lenght>

docmd.runsql " insert into <table_name> ([field]) values ( <array_name>(i))

next
 
Use a "Do While --> Loop" and an SQL Update Query.
 

Users who are viewing this thread

Back
Top Bottom