01-19-2006 09:51 AM
01-19-2006 10:01 AM
You need to wire each of your data arrays (PT100 1 through 9) as separate inputs into a Build Array function, with the Time array as the first input, for a total of 10 inputs. Make sure the "Concatenate Inputs" option on the Build Array is not selected. Then wire the resulting 2D array to the "2D data" input of the Write to Spreadsheet File.vi. This should give you the data in the format you need.
You can learn more about constructing arrays by reading the LabVIEW Help on the Build Array function.
Good luck,
-D
01-19-2006 10:14 AM
01-19-2006 10:20 AM
Yes, there is an easy way to insert columns or rows into your array. Use the "Insert Into Array" function from the Array palette. Then you can specify the row or column index at which you want to insert the new row/column. If you want it to be at the beginning of the array (like if you want a row header or a column header), you would wire an index of zero. Check out the LabVIEW Help for Insert Into Array for more information.
Hope this helps,
-D
01-19-2006 12:42 PM
01-19-2006 12:54 PM
If you want to see the numbers in normal format, you may want to consider using Number to Fractional String instead of Number to Hexadecimal String. If you want to see the numbers in Hex, though, expect to see a lot of 'F's. 🙂
-D
01-19-2006 01:04 PM
01-19-2006 01:15 PM
04-11-2012 07:12 PM
I am aquiring about 4 types of data continuously and I need to put each in a seperate column. What should I do?
(Building these data in 2D array is not an efficient way, is there any other way)