Hi,
I've a text file containing data as follows:
I need to get the fields of each line in a seperate field of a record. The records are separated by the '*'.
Does anybody know if there is method to seperate the records and order the the way I want (beside a line by line import using VBA)? Currently I have the file imported in a table.
I was thinking of shifting the Id in separate queries which I can join again, but maybe there is a simpler solution?
EasyIT
I've a text file containing data as follows:
FieldId(unique) FieldText FieldFileName
267261 text1 EAMABI_ARN.txt
267262 text2 EAMABI_ARN.txt
267263 text3 EAMABI_ARN.txt
267264 * EAMABI_ARN.txt
267265 text5 EAMABI_ASD.txt
267266 text6 EAMABI_ASD.txt
267267 * EAMABI_ASD.txt
I need to get the fields of each line in a seperate field of a record. The records are separated by the '*'.
Key FieldText1 FieldText2 FieldText3 FieldFilename
23 text1 text2 text4 EAMABI_ARN.txt
24 text5 text6 EAMABI_ASD.txt
Does anybody know if there is method to seperate the records and order the the way I want (beside a line by line import using VBA)? Currently I have the file imported in a table.
I was thinking of shifting the Id in separate queries which I can join again, but maybe there is a simpler solution?
EasyIT