R
Ray C
I'm using the following line to import a text delimited file :
DoCmd.TransferText acImportDelim, "MySpec", "MyTable", "D:\Export\File.txt",
False
One of the fields in the file has names that have extra spaces at the end.
For example: "Company","John Doe "
After the import, the table contains "John Doe" (no spaces after Doe).
How can I import the file so that spaces are also imported. In other words,
prevent Access from trimming the field. I need to re-export the field as it
was imported.
Thanks in advance
Ray
DoCmd.TransferText acImportDelim, "MySpec", "MyTable", "D:\Export\File.txt",
False
One of the fields in the file has names that have extra spaces at the end.
For example: "Company","John Doe "
After the import, the table contains "John Doe" (no spaces after Doe).
How can I import the file so that spaces are also imported. In other words,
prevent Access from trimming the field. I need to re-export the field as it
was imported.
Thanks in advance
Ray