Loop through cols/rows of two separate tables for getting arguments into a function
I have got a working function which plots trends and distribution for measured parameters (columns in a table1) using test limits (LSL, USL in another table, table2). Names Default To Here (1);
getTrendChartAndDist = Function({colName, LSL, USL}, {TrendDistChart},
New Window(""||colName||" Trend & Distribution",
Graph Builder(
something here .....
);
return(TrendDistChart);
);
In order to plot...