LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Case Structure spreadsheet saving

When I run this I get a series of 0.000000 data from the spreadsheet file.  What does the red dot at the entrance of the write to spreadsheet data point mean?  Is the problem inside of the case structure or outside?  The mean value indicator on the front panel show a number, shouldn't that same number be put into the array in the case structure when the value is true?  Do you think the problem is that the data isn't getting to the array, or that the array data isn't saving correctly?

Thanks

0 Kudos
Message 1 of 2
(2,136 Views)

Is the data in the mean indicator indicative of what you are reading? If so, then your problem is that you are not formatting the data correctly. the default format string is %.3f (at least it is now) which records only to 3 decimal places.

 

Your red dot is a coercion from DBL to SGL. The data type of the Write to Spreadsheet is now DBL so there is no coercion. If it is a concern, modify the Write to Spreadsheet and save with a new name an in a new location.

0 Kudos
Message 2 of 2
(2,129 Views)