Origin Ver. and Service Release (Select Help-->About Origin): Origin Pro 8.1 SR3
Operating System: Win7
Hi everyone. I have the following problem:
I have a lot of data in Col(A). I now want now only to use a certain range of rows - lets say from row aa to row bb - in Col(A). The rest can be discarded. I tried the following script (and variations thereof):
int aa = "some variable defined by other parameters"
int bb = "some variable defined by other parameters"
range Data = 1[aa:bb];
Col(B) = Data;
delete Col(A);
Either nothing really happens or the entirety of Col(A) is copied to Col(B). How can I put variables as parameters into a range? It should be possible, right?
Also, if you have suggestions how to more elegantly solve my goal (eg extract data from a column), then I would rally appreciate it.
I wanted to add that I already "achieved" my goal by copying the individual cells via a for-loop. However, considering that my datasets can range between 1-4 million, I am pretty sure that this approach will be way to time consuming.