Hello,
I'm trying to build a program in which I have a table and the user can click on whichever radio button he wants and it will add the corresponding array to the table.
My arrays are created at the beginning with an arbitrary amount of memory (which is larger than expected to be loaded) and a for loop while loading the file counts the actual number of elements in the file itself. I wish to use SetTableCellRangeVals to put the data in rows since the data is not uniform. Does the array length has to match the number of rows I open even though I explicitly define how many needed rows to put (the array itself is longer than the amount of data I want to put in the table)?
Thanks in advance for the help.