Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.
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?