09-12-2007 11:55 AM
09-12-2007 01:01 PM - edited 09-12-2007 01:01 PM

Message Edited by smercurio_fc on 09-12-2007 01:02 PM
09-12-2007 03:57 PM
09-13-2007 12:30 AM
You don't need to transpose, here's what I do and I use LabView 7
Say you have 4 parameters you have values for (Vin, Current, Temperature, Frequency)
The 3 main functions I use are, Write to File, Format into String, Concatenate Strings
Your 4 parameters will be the inputs to Format Into String, the output "Resulting String" will go to first node of the Concatenate String. To the second node, connect this thing called "end of line constant". The output of this concatenate string called the "Concatenated String" is now the input to your Write to File block, "data" node.
Save this file in .txt format, then right click and open your file with Excel
You should see your data in the following format, in columns A, B, C, D of your excel sheet (values are of course made up)
Vin Current Temperature Freqency
1 1.1 25 10
1.2 1.0 26 11
Now you are free to manipulate and organize your data in Excel as you wish. Hope this helps.
09-13-2007 08:52 AM