LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Generating one spreadsheet for 4 outputs

My program is fully functioning, but I am currently generating 4 separate spreadsheets for my data to include the time stamp on each reading. I'd like to be able to have one spreadsheet where I have all my data each to their own columns and one column for the time stamp data. The readings should all be taken at the same instance so I don't see any issues with that. Any ideas on how I could do this? Listed is my code and an example of the type of data I currently generate. Any help would be appreciated.

0 Kudos
Message 1 of 3
(2,112 Views)

The "Export Waveforms to Spreadsheet File" takes an array input. I've never used it, but I would build them into an array and see what happens.

0 Kudos
Message 2 of 3
(2,098 Views)

1. Use a Chart instead of a Graph.  The chart keeps a history for you, so no need to append the waveforms.

2. Use 1 chart for all of the signals.  This will make things a lot easier on everybody.

3. Write the data as you read it.  This will save a lot of memory.

4. Learn to use the Data Queue PtByPt VI.

5. You should have the From DDT output an array of waveforms.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 3 of 3
(2,085 Views)