07-06-2010 12:24 PM
07-06-2010 12:38 PM
There is a VI called something like "write to spreadsheet." You can append (add data onto a file) or create a brand new file. If you need a deeper explanation or had a different answer in mind, just let me know.
07-06-2010 12:49 PM
07-06-2010 12:54 PM
Well, if you have 40 data points, then it should work very earily. If you have 40 arrays, then that would be a very cluttered spreadsheet file...
When you want to create a new spreadsheet and keep adding data onto it, you just use multiple 'write to spreadsheet' VIs and the output file feeds to the input file of the next one, which will append to it vertically (adds onto the bottom of the spreadsheet).
07-06-2010 01:04 PM
07-06-2010 01:13 PM
Sure, here you will see a pink line coming from the left which is all of my data. I also have some data parameters which I enter in first just so I can add the date and stuff like that. On the VI on the right there is a 'true' constant which sets append to true, so the data will be written on the same file as 'Data Parameters' that I put in.
07-06-2010 01:23 PM
07-06-2010 01:43 PM - edited 07-06-2010 01:43 PM
Hi apple2,
there is no ready-to-use ExpressVI that saves all values from a front panel to a file. Point. Also not in CVI...
You have to make that on your own! Simply collect all values in an array and save the array to a spreadsheet file as mentioned before.