In ACCESS 2007 I need the results of a report in a fixed format file format text file. The record length of the file is 80 characters. The first record is a header record. It has the format of
##SET14 space)today's date as a 8 digit date)a 6 character transaction count with leading zeros)
i.e.
##SET HRF101320090000 13
The data records have a format of
X2(a 9 digit Id)(today's date as a 8 digit date)(5 digit number)(0100 concatenated to 2 digit year)
i.e.
X21234567901012 200901359010110
I would appreciate some VBA code to do this.
##SET14 space)today's date as a 8 digit date)a 6 character transaction count with leading zeros)
i.e.
##SET HRF101320090000 13
The data records have a format of
X2(a 9 digit Id)(today's date as a 8 digit date)(5 digit number)(0100 concatenated to 2 digit year)
i.e.
X21234567901012 200901359010110
I would appreciate some VBA code to do this.
Comment