Thanks to all who helped with the importing problems I was having. That's
working fine now.
I still did not get the plotting solved yet. I can program a script that let's
me plot all
columns into one graph (different layers) but I didn't get to program that forevery plot a different graph window is opened so I'll state my problem and
intentions again (and a little more elaborated).
I have a (huge) worksheet of 100 or more columns of about 70 rows. There is
one
X column on the left, all the others are Y columns. I want a script that goes
through the worksheet and makes SEPARATE graph window for every X-Y plot, using
a certain template. So I will end up with about 100 graph windows, I know.
I later want to be able to modify the data, so I cannot use 'open multiple
graphs'. I've tried several variations of this kind of script but they
would either not work or make origin crash.
Included script:
%A=cluster-mcs-mass.otp;
loop (var,3,data1!wks.ncols)
{
work -s var 0 var 0;
work -p line %A;
};
Thanks,
Peter