Hi,
Is there a way to link vector columns so that when we do something like asc, the corresponding column will also re-arrage:
tbl:( sVec:((b
ca);(
ca
b);(a
b`c));sNum:((2 3 1);(3 1 2);(1 2 3))); tbl sVec sNum ----------- b c a 2 3 1 c a b 3 1 2 a b c 1 2 3 update sVec:asc’[sVec] from tbl sVec sNum ----------- a b c 2 3 1 a b c 3 1 2 a b c 1 2 3 Desired output (Where each symbol is linked to number in same vector position): tbl1 sVec sNum ----------- a b c 1 2 3 a b c 1 2 3 a b c 1 2 3
Many thanks!