Hi @Apssub
as @Mark_Bailey posted already, a sample would be really helpful, you can also kind of anonymize it to avoid unveiling confidential information.
Did you have a look at the examples, e.g. in the scripting index you will find that script ( > Help >Scripting Index > search for 4P HILL).
Simply execute and have a look at the result.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Nonlinear Examples/Bioassay.jmp" );
obj = dt << Fit Curve(
Y( :Toxicity ),
X( :log Conc ),
Group( :formulation )
);
obj << Fit Logistic 4P Hill;
Georg