Maximum value of several variable columns to specific rows
Hi all, How to create a formula column to find the maximum of several variable columns to specific rows colList = dt << get column names;
colList = remove( colList, 1,2);
Show( colList );
New Column( "Column 15",
Numeric,
Continuous,
Format( "Best", 8 ),
Formula( Maximum(colList[1]), colList[2],colList[3] ) ),
Set Selected
);
vince_faller