What's the syntax to have a column operate on itself?
This is the best I could come up with and it doesn't work.
dt = current data table();
column(dt, "Architecture") << Set Each Value( Repeat("0",3-Length(Char("Architecture")))||Char("Architecture"));
Column Architecture has values like 1, 2, 123, XXX, etc. Length is not standard.
Want a script that will run on the table and covert the column to standardize the length at 3 and add any leading zeros.
Resulting values would be, 001, 002, 123, XXX, etc.
Saw this post and it was almost there.
https://community.jmp.com/t5/Discussions/How-to-represent-numeric-value-quot-1-quot-as-quot-001-quot...