Hello all,
I have two scripts A and B. Script A and B both use the same data table. And what script A can do is updating columns for the data table.
I want to open the data table, call script A, and then use the table from script A to do the future analysis. But my code doesn't work.
Below is a part of my script. I think the script A is called successfully, but the script after include function can't work. It is my first-time use include function. Can someone help me with it?
I appreciate your help a lot!
dt_template = Current Data Table();
dt_template = include("XXX");
dt_template << New Column( "L",
Character,
Nominal,
Formula(
),
eval formula
);