E
Evan Morris
So I have a massive amount of data files I am trying to compile together into a database. The appropriate structure of the database itself is an issue, but I have far more pressing problem that I will have to tackle before I can do anything else.
The data files represent conditions and results for discreet "runs". Each run gets 2 data files. One is a tab delimited .txt and the other is a .csv.
The .txt file is laid out like this
i = Field identifier
f = Field/data
= blank space
an identifier applies to data below it
i i i i i
f f f f f
i i i i i
f f f f f
i i i i i
f f f f f
f f f f f
f f f f f
f f f f f
f f f f f
f f f f f
The second file (.csv) looks like this:
i f
i f
i i i i i i i i i i
f f f f f f f f f f
f f f f f f f f f f
f f f f f f f f f f
where the top two identifiers/field combos apply left to right, the other ones are vertical.
--------------
Anywho. Is there ANY way to import these files without severely reformating my data and/or write some VBA stuff to pull it in?
Ugh, I wish I could catch the people that made these data files before they generated years of data in these terrible formats.
Submitted via EggHeadCafe - Software Developer Portal of Choice
SQL Server Stored Procedure Scripts By Dependency
http://www.eggheadcafe.com/tutorial...8-37aad7fc9103/sql-server-stored-procedu.aspx
The data files represent conditions and results for discreet "runs". Each run gets 2 data files. One is a tab delimited .txt and the other is a .csv.
The .txt file is laid out like this
i = Field identifier
f = Field/data
= blank space
an identifier applies to data below it
i i i i i
f f f f f
i i i i i
f f f f f
i i i i i
f f f f f
f f f f f
f f f f f
f f f f f
f f f f f
f f f f f
The second file (.csv) looks like this:
i f
i f
i i i i i i i i i i
f f f f f f f f f f
f f f f f f f f f f
f f f f f f f f f f
where the top two identifiers/field combos apply left to right, the other ones are vertical.
--------------
Anywho. Is there ANY way to import these files without severely reformating my data and/or write some VBA stuff to pull it in?
Ugh, I wish I could catch the people that made these data files before they generated years of data in these terrible formats.
Submitted via EggHeadCafe - Software Developer Portal of Choice
SQL Server Stored Procedure Scripts By Dependency
http://www.eggheadcafe.com/tutorial...8-37aad7fc9103/sql-server-stored-procedu.aspx