Hello everyone,
I need to put an array of values into a row and other into a column of a table. One way to do it is using a for loop entering value per value, however I don't know if this is the optimal way. Maybe there is a command for that as:
table[Row2][*] = MyArray;
table[*][Col3] = MyArray;
Is there an optimal option than a for loop?