12-21-2009 01:29 PM
hi everyone
my problem is to get a two input data and form a array, them export to a spreadsheet file
but i dont know the amounth of inputs data, that's why im using a while loop, then i use a "NEXT" button to put the input data into the array
the problem is that the array always have only 1 element, not the entire data that i need
heres a simple block code of the case
i hope someone could help me
thxs
Solved! Go to Solution.
12-21-2009 02:27 PM - edited 12-21-2009 02:30 PM
You need to build up the data in the outer loop, then write it to file once the outer loop stops execution. Like this:
The code doesn't work, but the conceptual statment makes sense.
12-21-2009 02:30 PM
12-21-2009 02:42 PM
12-21-2009 04:14 PM
Thank you everyone, yours answers really helps me to figure it out how to solve my problem
here is a picture of the block diagram, it fits better to my case, because both input are variable, instead of a counter
12-21-2009 04:29 PM