Hello Jim,
When attempting to Set Property for Custom Order with a given List, the List is not interpolated/evaluated.
May I know how we can make it work with a given variable List ?
dt = Current Data Table();
order_list = { "Tony", "Robert", "Patrick", "Henry" };
dt:Names << Set Property(
"Value Order",
{ Custom Order( order_list ), Common Order( 0 ) }
);
In example above:
Running Custom Order( order_list ) sets the value order with a literal value named "order_list"
Running Custom Order( Eval(order_list) ) sets the value order with a literal value named "Eval"
Running Custom Order( EvalList(order_list) ) sets the value order with a literal value named "Eval List"
Literally listing the values in Custom Order without calling variable, only then it works.