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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Export data from access to CSV

Status
Not open for further replies.

amillia

Programmer
Joined
Nov 14, 2001
Messages
124
Location
US
Basically, what I need to do is export all of the work order numbers out of an access table to a csv file on the server and it needs to be scheduled to work daily. Can I do this.
 
I honestly don't know how to get it to work daily, but I know that it's possible. Try searching the forums.

As far as exporting goes, try something like this:
Code:
DoCmd.TransferText acExportDelim, "", "tbl_or_qry_ofTheStuffYouNeed", "C:\textfilename.csv", True

-------------------------
Just call me Captain Awesome.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top