How to Retrieve infotable data row selected from aggregate function
Hello, I am looking to get the minimum column value from an infotable using the aggregates function. The issue is that the aggregates result, it only retrieve the min value.
I want to know how retrieve the entire row of the infotable that the aggregates selected as a result. ¿Is that possible?
This is my code:
var params = {
t: infoTable /* INFOTABLE */,
columns: "RD_MP_PRED" /* STRING */,
aggregates: "MIN" /* STRING */,
groupByColumns: undefined /* STRING */
};
result = Resources["InfoTableFunctions"].Aggregate(params );
The result variable is a number.

