LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to display analog and digital values in one table

Iam having two VIs,one is to read analog values and one is to read digital values.These two VIs are working fine,but now i want these two VIs display their values in one table on one front panel.How can i do this?any examples are welcome.
0 Kudos
Message 1 of 2
(2,571 Views)
A table is a 2D string array so for both your analog and digital signals, you need to convert them to strings. On the string palette, you can use format into string to convert numbers to string representation or booleans to TRUE/FALSE strings. On the String/Number Conversion sub-palette, you could also use Number to Fractional String. This is polymorphic so if your analog values are in an array, you can just wire that to the function instead of uing Format Into String inside of a for loop.
Message 2 of 2
(2,561 Views)