The data in your sheets seems to be copied text (!) from a word document.
What is the original format the data is actually provided in? I guess it can't be a text document but rather something like a csv file or the like.
Here is a stupid and dull way to handle the data as its provided in your example sheet:
1) Double click the region with the data
2) Word should open; select the data row and copy it using Ctrl-C
3) Switch back to Prime and type "data:=" (without the quotes) and then press Ctr-V to insert the data. The result should be that you created a string variable containing the data values separated by commas.
4) Now you can write a simple parser to separate the values in the created string, convert them to numbers and store the results in a vector
5) Now you can access individual vector values using the normal ways to deal with vectors.

But I am pretty sure that there will be much better ways to go once you reveal what format the actual data is provided in.
Prime 6 worksheet attached