Hi Echart,
You need to upgrade to 2019b to have full formula support in user defined parameter.
Or you can run Labtalk script to set longname as IQR:
for (int i = 1; i <= wks.nCols; i++)
{
double dd = percentile(wcol(i),{75})-percentile(wcol(i),{25});
wcol(i)[L]$ = $(dd);
}
James