08-16-2010 06:10 AM
Hi,
im stuck on trying to display a row of data which i took from a excel file.
just displaying the data on an array table has no problem BUT when i use Index Array and Replace Array Subset Function, no data comes out.
so here it goes, Table3 has the data i want but Table2 have no data at all.
im using Index Array and Replace Array Subset Function to allow me to SELECT the ROW of that i want to be displayed on
any idea?
Solved! Go to Solution.
08-16-2010 07:37 AM
Hey!
Try this..
I use the reshape array function to change the row extracted from Excel from 2D to 1D. Then you can just straight replace this in your table.
- Rkll
08-16-2010 07:47 AM
Best guess is that "Table2 stereo" is empty to begin with. You can't replace elements of an array that does not exist.
08-16-2010 09:43 AM
Seems that you are doing it the hard way : why don't you use the array subset function ?
Of course, Wayne was right.
Additionnal comments :
1- you are misabusing the local variable
2- the index array function can be resized to have several outputs
3- then, no need to wire all the index input (autoindexing works here also...)
4- same comment for the index inputs of the replace array element function, if replacing elements on the same row
08-16-2010 09:16 PM
thank you all of you all
it was a great help!