Try the Materials Informatics Toolkit, which is designed to easily handle SMILES data. This and other helpful add-ins are available in the JMP® Marketplace
By using a modal window, the user assigns a value (for example "ABC10") to a variable (my value) and I would like to fill a column with that value. My code looks like this:
my value = { "ABC10" };
dt << New Column( "My Column");
For Each Row( :My Column[] = my value);
I am having trouble because my value is a list and the expression does not fit available column types. Can anyone help me out?