It is hard to know exactly how deep into the text file to go and where to stop to get exactly what you want. Text files are known to be unpredictable as far as data locating. Unless the file is in binary form or a datalog, you will have a hard time doing random data access. The reason is for example, 1 data point could have 3 characters (156) or 1 character (1). So this makes specifying the start and stop indexes of the file difficult to pinpoint.
However, if you don't mind reading the whole file and processing it later then it is simple to plot a specific trace Y vs. time X. I've attached some LabVIEW code in LV6 which can do this. You never specified version so i can send it in 5.0 if you like. There I use the index array functions to ext
ract exactly what you need from the data array after it has been opened. You don't really need to use a for loop.
Michael Aivaliotis