Hi,
Origin 8.5 doesn't support to specify XY subrange using X values region. This feature is available since 8.6.
Please use the bwlo script as a workaround:
int nBegin = index(20, col(A), 2);
int nEnd = index(25, col(A), 1);
range rr = 2[$(nBegin):$(nEnd)];
double ymax = max(rr);
col(B) = col(B)/ymax;
Thanks,
Shirley
Originlab Technical Service Team