08-06-2018 07:51 AM
Hello all,
can someone guide me if I'm on the right way or not I have problem with the excel file the data not in the same row??
thanks a lot
Solved! Go to Solution.
08-06-2018 08:05 AM
For work with real Excell you need report generation toolkit.
Without it you can use "Write Delimited Spreadsheet VI" and then convert this file into real xls format
08-06-2018 08:20 AM
Hello Saed123,
Just remove the string constant "/n". The default separator is already a tabulation. That should work for your excel file.
Regards,
08-06-2018 08:44 AM
08-06-2018 09:01 AM
08-06-2018 12:15 PM
The file you attached, "backup_1.xls", is not an "Excel" file, despite having the (logically-incorrect) extension .xls. If you examine it with a Text editor, you can see that it is all text, but with a very strange format:
How did this code get written? If it was written by LabVIEW, then someone wrote a bad "logging" routine (and put extra <CR> characters after the numbers). Otherwise, you have the makings of a nice Tab-delimited "Spreadsheet" (not Excel) file that LabVIEW can easily read using Read Delimited Spreadsheet". Note that this file format is closely related to the Comma-Separated Variables (or .csv) format, which Excel "appropriates" by forcing an Excel-like Icon for these files (and causing confusion in people such as yourself who think these text files are "Excel").
Bob Schor
08-07-2018 02:55 AM
08-07-2018 04:00 AM
Here is the vi I modified to make it work.
Could you confirme it's ok?
Regards,
08-07-2018 04:14 AM
08-07-2018 04:27 AM