I am using Access 2007 and I wish to export my data into a text file with a \'.\' separator. I don\'t seem to have any luck finding an answer so I wondering if it were possi
here's one way of doing it (reposted from my original answer to the duplicated question):
that should handle it. i'm assuming that there are no decimal numbers or dots in any of your text fields, or else you'll have problems parsing the output...
Right click ---> Export ----> Text File ----> pick location (don't check export data with frmatting and layout ----> OK ----> delimited, ok ---> next-----> other "."
Working with a schema.ini file
In MS Access
Sub TransferData()
'Assuming file exits
Kill "z:\docs\export.txt"
CurrentDb.Execute "select * into [text;database=z:\docs\].[export.txt] from table1"
End Sub
The Schema.ini file, which must be in the directory that is used for the export:
[export.txt]
Format=Delimited(.)
DecimalSymbol=,
More information: Schema.ini