T
TIML
I have the following code written to import a text file comma delimated. I
want to be able to import the file comma and space delimated. Is there a
way to do that?
DoCmd.TransferText acImportDelim, _
"Receive Import Specification", "Receiv1", _
"\\George\Public\Common\Falcon\Receiv1.txt"
The file has 3 fields at the beginning that are seperated by spaces and the
rest of the fields are seperated by comma's.
ie. 3078109 EB0403 03/19/03,REBOX,1600,19:47:23,04/02/2003,,BC1
Currently, I bring in the file and use Left, Mid and Right to seperate the
the first 3 fields, but they are not always the same length and it is
causing problems.
Thanks!
want to be able to import the file comma and space delimated. Is there a
way to do that?
DoCmd.TransferText acImportDelim, _
"Receive Import Specification", "Receiv1", _
"\\George\Public\Common\Falcon\Receiv1.txt"
The file has 3 fields at the beginning that are seperated by spaces and the
rest of the fields are seperated by comma's.
ie. 3078109 EB0403 03/19/03,REBOX,1600,19:47:23,04/02/2003,,BC1
Currently, I bring in the file and use Left, Mid and Right to seperate the
the first 3 fields, but they are not always the same length and it is
causing problems.
Thanks!