1. I had requested in one of my last responses, if you had looked in the Log to see if there were any errors. I ran the script as you had included in the attached data table from your last response. In looking in the log, it specified:
The namespace "dt" is not defined in access or evaluation of 'dt:Johnson Sl Transform X By Timepoint' ,
dt:Johnson Sl Transform X By Timepoint/*###*/
Taking that, and looking into the script, the "dt" reference is in the line
JohnsonMean = Col Mean( dt:Johnson Sl Transform X By Timepoint );
dt in this context is looking for a variable called dt, which is pointing to the data table to read the data from. So the correction to the program, is to add the following line prior to the use of the reference in the code.
dt=current data table();
I added it in my copy of the code, as the first line in the script.
Once I did that, in the log I got the following results from the script
JohnsonMean = 1.72084568816899e-15;
Col Mean(:X) = -2.09978125;
Gettrans("X", "Johnson Sl Transform X By Timepoint", JohnsonMean, myFormula) = 1.1;
Please Note......the results were in the log file.......
Jim