06-13-2006 07:47 AM
06-13-2006 08:06 AM
Hi twilight,
Your timestamp within the file is a string, right?
I have to assume that you are using a text file and not a spreadsheet.
In the case of a text file, you can use Concatenate Strings to place the data one after the other following the timestamp. You can include a delimiter, suchs as a space (in this case), so that you can read the file. You could actually use a tab, which would make the file wider in some text editor, but easier to read.
The trick is to NOT include an end of line character "\r" "\n" (or combo) until you have concatenated all the data for that line, then place a single end of line constant at the end of each sample... Hopefully, I'm not confusing you... 😉
Example:
10:20:34 data1 data2 data3 ... data_n "end-of-line"
10:26:34 data1 data2 data3 ... data_n "end-of-line"
JLV
06-13-2006 08:17 AM
06-13-2006 08:26 AM
06-13-2006 08:51 AM
06-13-2006 09:41 AM