stu22:
Assuming you get 1 element at a time for each of 5 sensors, humidity,
temperature, etc.
What you really are trying to do is create a data logger for a
continuous process as it is happening right?
The write spreadsheet vi is really intended for a post-process data
dump. If you intend to write your data post process, it should be
possible to accumulate all your sensor data into 1D arrays, tack a
header onto each and then combine them into a single 2D array for
writing.
If you want to do it during the process, you could write to Excel
using ActiveX.
You could also log the data to a database using SQLToolkit. I've done
this with a temperature/humidity monitoring system before.
It sounds like the update speeds here will be relatively low, say
1/seco
nd. If this is wrong then let us know more about your system.
Douglas De Clue
LabVIEW programmer
ddeclue@bellsouth.net
stu22 wrote in message news:<506500000008000000BF540000-1027480788000@exchange.ni.com>...
> Basically when my program is run, i want to save my results as a
> spreadsheet file. There is roughly 5+ channels of data e.g. voltage,
> temperature etc. And these come out of field point read vi's. At the
> moment all the data is split up into elements and put into a build
> array. But most of the save as spreadsheet examples i have requre a 2D
> array input.
>
> Is there any other way of approaching this, also when my data is saved
> as a spreadsheet i need to be able to add headers to the columns of
> data.