‎12-22-2014 09:53 AM
‎12-22-2014 11:03 AM
I see from the code you posted that you are using NI's "Write to Spreadsheet" function. What JeanLuc and I have been discussing is the Report Generator Toolkit in LabVIEW which works with Excel and reads/writes to Excel -- quite different. I believe (but will admit I've never used it, nor am I likely to) that the Write to Spreadsheet function writes basically a text file that follows the .CSV (comma-separated values) format which Excel can read. If that's the case, you could always "roll your own". Alternatively, to accomplish your goal (which I believe is updating existing Spreadsheet files, either adding or replacing data), consider doing the following:
Bob Schor
‎12-22-2014 11:19 AM
@Bob_Schor wrote:
I believe (but will admit I've never used it, nor am I likely to) that the Write to Spreadsheet function writes basically a text file that follows the .CSV (comma-separated values) format which Excel can read..
Not quite, but good enough for newbies to understand. The Write To Spreadsheet File just writes a delimited text file. By default, a tab is used as the delimiter. I you save a file as a text file (*.txt) and open it in Excel, Excel will open it just fine.
‎12-22-2014 01:46 PM
Thanks to everyone, I appreciate all input.
Kudos to Jean and Dennis