L Lenny_821 New member Local time Today, 14:41 Joined Sep 14, 2005 Messages 9 Dec 22, 2005 #1 Hi All, I've got an Array which I want to import into a table. How can I do that? Lenny
C checoturco Registered User. Local time Today, 06:41 Joined Oct 17, 2005 Messages 76 Dec 22, 2005 #2 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
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
reclusivemonkey Registered User. Local time Today, 14:41 Joined Oct 5, 2004 Messages 749 Dec 22, 2005 #3 Use a "Do While --> Loop" and an SQL Update Query.
L Lenny_821 New member Local time Today, 14:41 Joined Sep 14, 2005 Messages 9 Dec 22, 2005 #4 ok, thanks. I am going to try that. Lenny