T O P I C R E V I E W |
EigenGoofy |
Posted - 05/18/2011 : 4:49:22 PM let's look at the column A
row1: 20 row2: 8 row3: 12 row4: 17 row5: 6 row6: 33
In the Origin 8.5, if typing as follow:
range tt = [book1]sheet1!A[3]; tt=;
It will return: TT=12
A friend has OriginPro 8.0, if typing the samething in Pro, it will return: TT=20
I also tried several differnet numbers, e.g.
range tt = [book1]sheet1!A[4:end]; tt=;
It still returns: TT=20
It seems that it always returns the first value on the column, despite of the assigned row number (e.g. [3]). I don't know what is wrong here?
Thank you very much! |
2 L A T E S T R E P L I E S (Newest First) |
EigenGoofy |
Posted - 05/19/2011 : 5:18:17 PM YES, the problem is solved.
Thanks very much, couturier! |
couturier |
Posted - 05/19/2011 : 09:24:30 AM Try the following:
range tt = [book1]sheet1!A; tt[3]=; |
|
|