05-29-2013 11:52 PM
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?
05-30-2013 07:44 AM
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.
05-30-2013 08:37 AM
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.