Hi
It looks like you have a set of " " between the columns, so what i would do is split each line one at a time, something like this:
'after you read the line
Dim myArray As Array
myArray = Split(line, " ")
that will create an array with the data what you want. Probably you will have to trim each line to get rid of the empty spaces.
Hope it helps
Regards