You could create mapping table and use that to go back and forth with Recode
![jthi_0-1707371952390.png jthi_0-1707371952390.png](https://community.jmp.com/t5/image/serverpage/image-id/60982iEDE8A4D44AB98B83/image-size/medium?v=v2&px=400)
Columns can also have multiple names but no idea how to access those expect by changing the language (x-id seems the most interesting here)
New Column(["en" => "name", "ja" => "名前", "x-id" => "S_name_Col", "zh-CN" => "姓名"],
Character,
"Nominal",
Set Property(
"Notes",
["en" => "...usually used as a label variable in plots",
"ja" => "散布図のラベル変数として使用する。",
"x-id" => "S_usually_used_as_a_label_variable_Not",
"zh-CN" => "...通常用作图中的标签变量"]
),
Set Selected,
Set Display Width(0)
)
You can also add your own, but again no idea how to access those (except from the column script)
Names Default To Here(1);
dt = New Table("");
dt << New Column(["en" => "test", "x-id" => "TEST2", "AAA" => "BBB"]);
Show(Arg(column(1) << get script));
-Jarmo