07-14-2010 01:04 PM
I have a VI that creates a (5,3) array of data that I then output into an excel template. However it simply outputs the (5,3) array. I know i can change where the first cell is put in but is there a way to one simply direct each data point into a specific cell or two tell labview to ouput to a seperate sheet?
07-14-2010 01:16 PM
How are you currently putting this into excel? (report generation tool kit, Active X, etc...)
07-14-2010 01:20 PM
report generation tool kit
07-14-2010 01:20 PM
report generation tool kit
07-14-2010 01:56 PM
The basic answer to this is no, because the RGT is just some wrapper VIs around the ActiveX interface for Excel, and that interface doesn't let you do this. You can select a sheet and make it the active one, but to place values into different ranges you have to write the ranges separately. Thus, if you wanted row 1 to go on sheet 1, row 2 to go on sheet 2, etc, then you have to perform these as separate writes. There is no "map" that you can specify to say where you want things to go.