You can resort to the old text file imports and import the file manually as long as it is a plain text file format. Look up Open, Close, input for code samples. You can then take each column and append it to whatever table is appropriate.
Keep in mind that if you don't normalize this data, you won't be able to work with it. Tables are limited to 255 columns but so are queries and so you won't be able to join multiple tables and exceed that column limitation. There is also a limit to the number of controls on a form/report. I don't know offhand what it is since I have never come even close to it but that could bite you also.
I'm guessing that if you normalize the schema, you will not have any problems. If you don't know how to normalize it, you could try posting back for ideas.