T Terry DeJournett Feb 25, 2005 #1 Does anyone know how to write a macro to take a table in Access and export it out as a "text" file? Thanks in advance. T.D.
Does anyone know how to write a macro to take a table in Access and export it out as a "text" file? Thanks in advance. T.D.
B Barry-Jon Feb 25, 2005 #2 DoCmd.TransferText acExportDelim, , "Table1", "C:\Temp\output.txt" Will give you a comma seperated text file. Search help on transfertext for how to customise the export to your exact requirements...
DoCmd.TransferText acExportDelim, , "Table1", "C:\Temp\output.txt" Will give you a comma seperated text file. Search help on transfertext for how to customise the export to your exact requirements...