01-21-2010 09:20 AM
01-21-2010 09:29 AM
And why did you post the question in a 2 1/2 year old thread when you already asked it here?
Please keep it in one thread.
08-13-2013 01:14 AM
Hello,
I also have some problems using the "write to spreadsheet file". Always the following error occurs:
08-13-2013 05:08 AM
Since you have no path wired you should get a popup asking for file name. If you canel that you'll get this error.
/Y
09-05-2015 02:39 PM
hi
i want to save on array to file and i write something to save this variable but i have a problem with it. when i run the program in every loop of while loop the program ask path address to save data. but i want choose path at first and program save all amount of variable in whole of program until i stop it. what shall i do?
( i attach an example about my question please give me solution with it or if it is rubbish, send me the answer with every thing is possible for you)
thank you
09-05-2015 07:27 PM
09-05-2015 11:49 PM
thnk you for tour answer
i have another problem. i have a varible that is just a nuber and it update in each loop iteration and i want to save all amount of this variable in whole program and I want to save it in excel file. what I must do?
thanks
09-06-2015 02:46 AM
03-30-2016 06:48 PM
Hi,
I want to write my loop execution time in date/time format and frequency in Write to Spreadsheet using 2D array . I tried but failed. Can you please give me any clue to solve my problem. Here is my vi.
Thanks
03-30-2016 06:56 PM - edited 03-30-2016 06:57 PM
1. You should close the instrument AFTER the loop.
2. Why the 2D Array? I only see a frequency measurement being taken. You should use a 1D array since you should write the data each iteration of the loop.
3. I would actually advise against using the Write To Delimited File VI since it opens and closes the file with each call. Instead, open/create the file before the loop and close it after the loop. Inside of the loop, you can use the Format String to create your row of data. Part of the format can be how you format the timestamp. Here is a very quick example of what I mean.