Summary and Sorting - Sorting not working
I have a data table where I am wanting to calculate mean, and have the output sorted (Descending) from a grouped column. As an exampleI.e., Data table If I summarize as follows:Data Table( "Example_DT" ) << Summary(
Group( :i, :f, :g, :h ),
Order( Descending, Descending, Descending, Descending ),
Mean( :Values ),
Freq( "None" ),
Weight( "None" )
);i.e., Selecting Descending Output is incorrect: Sho...