johnwiseman
MIS
Hello.
I have twenty four tables in MS Access which I need to export to a text delimited file. I have no problem with exporting to create twenty four seperate files using
DoCmd.TransferText acExportDelim,,"Table1", "Location1.txt"
DoCmd.TransferText acExportDelim,,"Table2", "Location2.txt"
ect.
I need to export the table to just one delimited .txt file where the first record on Table1 would be followed by the first record on Table2 followed by the first record on Table3. When all the first records have been exported the second records would be exported. So it appears like,
Table1 First Record
Table2 First Record
Table3 First Record
Table1 Second Record
Table2 Second Record
Table3 Second Record
The tables all contain different columns but share a relationship key.
Thanks in advance....
I have twenty four tables in MS Access which I need to export to a text delimited file. I have no problem with exporting to create twenty four seperate files using
DoCmd.TransferText acExportDelim,,"Table1", "Location1.txt"
DoCmd.TransferText acExportDelim,,"Table2", "Location2.txt"
ect.
I need to export the table to just one delimited .txt file where the first record on Table1 would be followed by the first record on Table2 followed by the first record on Table3. When all the first records have been exported the second records would be exported. So it appears like,
Table1 First Record
Table2 First Record
Table3 First Record
Table1 Second Record
Table2 Second Record
Table3 Second Record
The tables all contain different columns but share a relationship key.
Thanks in advance....