10-15-2018 07:03 AM
Good evening
Hai I am working on a project in LabVIEW and I am doing a report for all my founded values in the project and now i want all my values in text format that is in TRUE or FALSE but I am done with getting the values as 0 or 1 in a table but failed in getting them in text format
any help will be appreciated
Thank you
Solved! Go to Solution.
10-15-2018 07:06 AM
I see a lot of broken wires. I'm assuming that is where the problem is. You have an array of doubles and are trying to add to that strings. You can't have different datatypes in an array.
Convert the numerics to strings first. Then add the strings to your array.
10-15-2018 07:09 AM
I want to load the greater than output to build array for reading the values into table
10-15-2018 07:12 AM
All the broken wires are due to the loading of greater than output to Build array
10-15-2018 07:13 AM - edited 10-15-2018 07:13 AM
Use a FOR loop.
10-17-2018 12:46 PM
Functions -> Programing -> String -> Array to Spreadsheet String
10-17-2018 01:53 PM
@paul_cardinale wrote:
Functions -> Programing -> String -> Array to Spreadsheet String
I initially tried that, but the Array To Spreadsheet String does not accept an array of Booleans. It only likes floats, integers, and strings.
10-17-2018 09:50 PM
Convert the boolean array to num.
Coerce to Type (where type is an array of enums of "False","True")
Then Array to Spreadsheet String.
10-21-2018 11:54 PM
Hai Good Morning
The VI you replied is working but it shows error "You have connected two terminals of different types.
The type of the source is string.
The type of the sink is double [64-bit real(~15 digit precision)]" while loading it to build array. help me out for solving this thank you.
10-22-2018 01:10 AM
IMHO You need to go through basic LabVIEW Tutorials, Mainly on data types and Arrays.
Array will support for Same Data Type, You are trying to build String with Numeric datatype.
Based on your snippet try building after converting to String Datatype.