Output To text with no headers ?

  • Thread starter Thread starter bringmewater
  • Start date Start date
B

bringmewater

In Access 2007, I have a macro that uses "Output To" to write a text
file. How can I get the macro to export a simple CSV file with NO
headers and just the delimited data (no ----------- line separating
each row).

Thanks

ex:
name, 2342, 432, hello kitty
more, 2111, 332, arf
 
Hi,
this macro in A2003, exports to a simple CSV file with no headers

You could code your macro

Action: TransferText
Transfer Type: Export Delimited
Specification Name: 'leave this blank
Table Name: 'your table
File Name: 'your path and file name
Has Field Names: No

Jeanette Cunningham
 
Back
Top