Hello again
Need to extract som values from a txt file
The file contains this data:
Jane Doe;value1;value2;value3;value4
John Doe;value1x;value2x;value3x;value4x
Timm Doe;value1y;value2y;value3y;value4y;
....
I need to get the data in to 3 arrays:
Array1 = value1, value1x, value1y
array2 = value2, value2x, value2y
array3 = Jane Doe, John Doe, Timm Doe
I don't have a clue on how to do this, or how to search for hints/solutions.
Bengt