It seems that my issue was not fully solved, after all. Let's try again.
My source data is an excel table where new data points (rows) will be added on weekly basis.
I want to update my JMP graphs every week, with the new data points from the excel added into JMP graphs.
I have a script which imports all the data from the excel into JMP, including the latest updated data, and that works now OK.
But when I work further with the tables and scripts, I get into trouble.
I manipulate the imported data in JMP (convert data type, stack columns etc.). After doing this I save the scripts and then I see that the scripts have defined the exact values in the table as set values.
So when I re-use the saved scripts later on for new data, the scripts only use the original set values. And I would like them to use all the values.
Simplified example:
Excel includes data elements A, B and C.
I have saved in JMP data table X. It includes Script 1 which imports the data into JMP, creating a new JMP table Y. This works as it should.
I manipulate data in table Y.
I save the manipulation script as Script 2 in Table X, with intention to use it every time when I bring in new data into JMP. At this time I note that Script 2 specifies set values for data: A, B and C.
I close Table Y without saving it (because Y must be generated again every time with new data)
I add in excel a new data element, D.
I run Script 1 (from Table X) to bring into JMP all data elements (A, B, C, D), in a new table Y .
When I run Script 2 (from Table X), it only considers set values A, B and C, as they are defined set values in Script 2. Thus, new data D is not included.
How to build Script 2 so that it does not use only original, fixed set values but all the values, old and new?