Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Export Data

Status
Not open for further replies.

Bell1991

Programmer
Aug 20, 2003
386
US
Is it possible to export all tables out at once instead of going one by one?
 
Hi
Something like this?
Code:
For Each tbl In CurrentDb.TableDefs
If Left(tbl.Name, 4) <> "MSys" Then
    Debug.Print tbl.Name
    DoCmd.TransferText acExportDelim, , tbl.Name, "zzz" & tbl.Name & ".csv"
End If
Next
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top