//add steps here to get Nonlinear Estimates table from Nonlinear platform.
name = data table("nonlinear estimates"):parameter << get values;
value = data table("nonlinear estimates"):estimate << get values;
for (i=1,i<=length(name),i++,
data table("original table") << Set Table Variable( name[i], value[i] )
)
Maybe try "Set Table Variable". Seems it is the same as "add" if the variable does not exist. I was thinking of "delete" before "add", but that may break dependencies if you build other things that depend on the variables.