It would probably be best to originally write your data in a tab-delimited format (including labels, time stamps, etc). Then, you can program the Read from Text File function in LabVIEW PDA to mimic the behavior of the Read from Spreadsheet File VI in LabVIEW.
Once you place the Open/Create/Replace File and Read from Text File VIs on your block diagram, you can write click on the Read from Text File VI and select the Read Lines option. Next, scan through each line for tab characters using the Scan String for Tokens VI, and finally build up a 2D array of all elements in your text file. This may sound a bit confusing, so I have attached a small example VI to this post below (PDAReadFromTextFile.vi). Don't forget to use the Close File VI when you are done reading from disk.
Keep in mind that PDAs do not support array indicators, so you must view any front panel data as individual strings (or one large concatenated string). The Index Array function on the Array palette should come in handy here.
I hope this helps!
Casey Weltzin
Applications Engineer
National Instruments
Message Edited by Caseyw on 05-29-2007 09:08 PM