I am trying to find a corresponding row for a column Minimum "DEF" and trying to do that by column "GHI"?
I am able to find the Column Minimum for "DEF" but I am not getting the corresponding row value for column "ABC"?
I am using the following piece of code:
dt = current data table();
dt<<newColumn("BestB",numeric,continuous,Format("Best"),Formula(x = col minimum(:DEF,:GHI);));
dt<<newColumn("BestO",numeric,continuous,Format("Best"),Formula(rmat = dt << get rows where(:DEF == x);
r = rmat[1];
y = :ABC[r];));