Hi,
I am looking for easier way (without scripting) for extract the X column value of Y axis minimum for each plot/charts.
I have N columns chart, the first column is the X axis. the other is sets of measurements\reading.
I want to get the X value which related to each set of plots.
I did it by script but i want to know if there is an easier way.
attached example for data format.
following the script I wrote. that may help to understand the result I want.
dt=Current Data Table();
ds=New Table();
ds<<New Column("X axis");
ds<<New Column("Min value");
for(i=2,i<=ncols(dt),i++,
min=100;
minRow=1;
for(j=1,j<=nrows(dt),j++,
if(column(dt,i)[j]<min, min=column(dt,i)[j]; minRow=column(dt,1)[j]);
);
ds<<add row(1);
column(ds,1)[i-1]=minRow;
column(ds,2)[i-1]=min;
);
BR,
Yoav