Export more rows to a tab delimited file

  • Thread starter Thread starter Chuck
  • Start date Start date
C

Chuck

Hi,
I need to export a table to a tab delimited file.
There needs to be a single trailer record with the hash totals.
There are no record types to sort by so I can't get the trailer record to
always be the last record.
Any ideas on how to append a row to an existing tab delimited file or get my
trailer record at the end?
Thanks
Chuck
 
Hi,
I need to export a table to a tab delimited file.
There needs to be a single trailer record with the hash totals.
There are no record types to sort by so I can't get the trailer record to
always be the last record.
Any ideas on how to append a row to an existing tab delimited file or getmy
trailer record at the end?
Thanks
Chuck

export to whatever format you want, then open the file for output and
write to the file.
check out Write or Print from the VBA help file.
 
Back
Top