03-23-2015 07:43 AM
Hello,
I'm trying to save datas into a table but when I export in an excel datasheet I saw only last results (same results on each rows)..
Please anyone can help me on this issue.. I want to keep my results for each measurments.. See attched my VI and excel export..
Thanks a lot for support
Rémi
Solved! Go to Solution.
03-23-2015 08:09 AM
Hello Rémi,
I think that the first thing you should do is to review how arrays are created and manipulated in LabVIEW.
In your code if you want to add a line for each measurement, don't use the "Initialize Array". Instead create an array with the value you are currently using in "Initialize Array" function (so bypass the "Initialize Array"), the result will be a line that you can add in your spreedsheet.
Michel
03-23-2015 08:11 AM
Try runing your output data to a shift register in the while loop. Then use build an array with the new data on the bottom input. export the data after the build an array.
03-23-2015 10:38 AM
thanks both for your advices.. I find a way to solve this using your advices