Hi @AvgLizard122 ,
this is not exactly answering you question but may be useful in this context.
if you want to order values in a systematic way see if this helps:
dt = Open( "/C:/Program Files/SAS/JMP/17/Samples/Data/Cars.jmp" );
// make summary table for ranking Make by Wt
dtsummary = dt << Summary( Group( :Make ), Mean( :Wt ), Freq( "None" ), Weight( "None" ));
// order the countries by frequency
dtsummary << Sort( By( :"Mean(Wt)"n ), Replace Table, Order( Descending ) );
order = dtsummary:Make << get as matrix;
dt:Make << set property( "value ordering", Eval( order ) );
close (dtsummary, no save);
this approach has the flexibility of producing value orders by any other variable of just the frequency of the categories.
let us know if this hepls.