-----Original Message-----
This will import into the table named JIM. If it doesn't
exist the first import will create it. I hope this will help.
This creates the tables with the same name as in the
directory C:\testimport\ without the ".xls" without the xls
Private Sub Command0_Click()
Dim filename As String
filename = Dir("c:\testimport\*.*")
Do Until filename = ""
DoCmd.TransferSpreadsheet acImport, 8, "JIM",
"c:\testimport\" & filename, True, ""
filename = Dir
Loop
End Sub
Jim
.