Hello,
I am not sure about the command set for the 8564E Analyzer, however, you can certainly write the data to file named with extension .xls and easily use Excel. The string palette in LabVIEW has functions which will help you build spreadsheet strings (such as spreadsheet string to array and array to spreadsheet string); there are also spreadsheet file writing VIs. However, the underlying opertions there are trivial, since a spreadsheet string is nothing more than tab delimited (or comma delimited) values with linefeed characters determining when to go to the next row. That is, tabs between values tell a spreadsheet program to jump to the next cell in a given row, where linefeed (or end of line) characters tell a spreadsheet program to jump to the next row. Th
erefore, you are free to construct a single string with the appropriate format for writing to a spreadsheet file. Of course, you can write to a file multiple times instead of created a single large string.
Repost if you still have questions.
Best Regards,
JLS