LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to convert Array of Cluster to Spreadsheet file

Hello,
I´d like to save some diagram data in a spreadsheet file. These data are put together in 1D array with cluster (consisting of 2 elements: both long datatype).
How can I extract the array to save it in a spreadsheet (using LV 6.1).
Thank you for any reply...

reen

Message Edited by reen on 05-20-2005 04:34 AM

0 Kudos
Message 1 of 5
(3,138 Views)
You've already place the right function on the diagram. Wire the variable into a for loop (so you can access the clusters) and wire the cluster into "Cluster to Array" and wire the array out of the for loop. You will now have a 2D array.

___________________
Try to take over the world!
0 Kudos
Message 2 of 5
(3,123 Views)
and how often should the for loop be running?
0 Kudos
Message 3 of 5
(3,122 Views)
thank you, i´ve got it. answer to my last question was: for array.length ->right?! 🙂
0 Kudos
Message 4 of 5
(3,113 Views)
Well, I would say as often as your data changes. The loop is only used to do the conversion.

___________________
Try to take over the world!
0 Kudos
Message 5 of 5
(3,111 Views)