I have 2 worksheets the first has 1 x and 600 y columns the second has 1 x and 1 y column. the x columns are the same for both worksheets. What i would like to do is divide all 600 y columns by the y column from the second worksheet and to put the results in a new worksheet.
Is there information about this in the tutorial and if not. Can anyone help me out please?
You will probably need to change the names of the 1st and 2nd worksheets in the first two lines.
%F=Data1; // name of first wks %S=Data2; // name of second wks win -a %F; // activate 1st wks win -d; // duplicate window doc -e W {%W=%H}; // find name of new wks win -a %W; // activate new wks loop (i,2,wks.ncols) { %(%W,i) /= %(%S,2); };