I'd like to plot every 5th column into the same graph in one layer. I came up with the following script: int ii; int nCols=wks.nCols; for (ii=9;ii<=nCols; ii+=4) {
But, intead, it plots every column in a separate layer. With an additional indication of o:=[Graph1] it plots every column in a separate plot. Could you please help me modify the code so that it does the job I want?