LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Writing multiple value into a table control

Hello everyone,

 

      How can I write multple values to specific cell of a table control.? I know to load value to specific cell,but multiple values should be loaded. say i have values like 23,34,45,56. These values should be loaded to some specific places at a time. Is it possible?

Thanking you,
Sushmith
0 Kudos
Message 1 of 3
(2,507 Views)

A table is a 2D array.  So in order to set specific cells, you need to get the current array from the table, use Replace Array Sebset to change the specific cells you want, and write the 2D array back into the table.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 2 of 3
(2,472 Views)

If you have multiple values that you want to write to one cell, you could use a concatenate string to make them into one string and then write them to the array position you need for the cell.

0 Kudos
Message 3 of 3
(2,467 Views)