Hi Roger,
There is a real option to do this from VBA code or from a macro. In
either case what you want is the DoCmd.TransferText method in VBA or the
TransferText macro action, using the export delimited option. So in VBA
something like:
DoCmd.TransferText acExportDelim, , "tblGoals", "C:\Temp\Goals.csv", True
Or for a macro something like:
Action - TransferText
Transfer Type - Export Delimited
Table Name (can be a query also) - tblGoals
File Name - C:\Temp\Goals.csv
Has Field Names - Yes (or no)
The default delimiter appears to be the comma. If you want a different
delimiter, you can create an export specification and specify it. Check out
the online help for more details on the TransferText method/action and
import/export specifications.
Hope that helps,
Clifford Bass