G Gary Eck New member Local time Today, 06:29 Joined Feb 23, 2005 Messages 6 Mar 16, 2005 #1 I need to import/append multiple files from 1 folder into 1 table in Access. All the files have the same last word.ex.051703-Reconcile. Can anyone help? G
I need to import/append multiple files from 1 folder into 1 table in Access. All the files have the same last word.ex.051703-Reconcile. Can anyone help? G
W WayneRyan AWF VIP Local time Today, 11:29 Joined Nov 19, 2002 Messages 7,120 Mar 19, 2005 #2 Gary, You need VBA code on a Command Button. Code: FileName = Dir("C:\*.Reconcile") While FileName <> "" DoCmd.TransferText FileName <-- Just Guessing on the syntax FileName = Dir() Wend hope that gets you started, Wayne
Gary, You need VBA code on a Command Button. Code: FileName = Dir("C:\*.Reconcile") While FileName <> "" DoCmd.TransferText FileName <-- Just Guessing on the syntax FileName = Dir() Wend hope that gets you started, Wayne