I currently and trying to separate out numberic values that are stored in a single column as a string in this format: "9@12.5@32"
I am trying to use the word function to create new columns with single numeric values with this jsl:
dt<<New Column("New", Numeric, Continuous,
Formula(word(1,:Column,"@")));
but jmp will automatically change this to a categorical column. Is there a way to force it to be numeric?