LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Writing a 1D Array of Cluster to Spreadsheet file

I need to write to a Spreadsheet data from a Array of Clusters . The cluster has 10 elements in it. 

 

One way would be to make 10 independent arrays of the elements in cluster and append the array one after the other to the spread sheet ? This looks pretty long winded. 

 

Any other way to do this ?  Thanks 

Raghunathan
LabVIEW to Automate Hydraulic Test rigs.
0 Kudos
Message 1 of 4
(222 Views)

Since your cluster is mixed (I32 and U32), you need to convert to a datatype with a range that covers both. (DBL, I64, etc). Depending on the desired output, transpose the 2D array.

 

(If you have more information, e.g. you can guarantee that there are no negative values and nothing over 2^31, further simplifications are possible.)

 

altenbach_0-1716824343727.png

 

 

 

(Why are some elements named "Byte" if they are not U8? Seems confusing! If they are guaranteed to be in the range 0...255, toU32 would be sufficient above)

 

 

0 Kudos
Message 2 of 4
(208 Views)

All your values seems to be small positive integers, so U32 should be plenty:

 

altenbach_0-1716827974216.png

 

Message 3 of 4
(177 Views)

Wow. That looks simple … never thought of the conversion. 

the reason the ID and milli are 32 bit is that they are CAN bus data. 

thanks for the prompt help !! 

Raghunathan
LabVIEW to Automate Hydraulic Test rigs.
0 Kudos
Message 4 of 4
(149 Views)