Not completely sure but links these will most likely have answers for you:
Utility Functions - Name(String) (will be depracated)
JSL Syntax Rules - Names
I think same rules are applied for column names
This seems to work fine:
Names Default To Here(1);
dt = New Table("Untitled 2",
Add Rows(2),
Compress File When Saved(1),
New Column("Column\",
Numeric,
"Continuous",
Format("Best", 12),
Set Values([1, 2])
)
);
Show(Col Sum(:Column\));
I wouldn't feel comfortable referencing columns like that even if it would work and would use some other way (AsColumn(), Column(), :"column name"n depending on the case).
-Jarmo