Min and Max values of all numeric columns
I am trying to extract minimum and maximum values from all numeric columns of a table. However, I also want the column name of which the values are extracted. Here is my script:dt = Open("Path");
nc = N Row(dt);
mycol = dt << get column names;
//show(mycol);
for(i=1,i<=nc,i++,
If( x = Column( dt, i ) << get data type() == "Numeric",
myMax = col max(column(dt,i));
print("Max:",myMax);
myMin = col min(colum...
tallman