Hi bplinder,
If you do such operation often, you can define a macro like following:///////////////////////////////
def cattextds { // %1:ColRange1, %2:ColRange2
int nr2=%2.getsize();
for(ii=1; ii<=nr2; ii++) {
%1[ii]$=%1[ii]$+%2[ii]$;
}
}
range r1=col(1);
range r2=col(2);
cattextds r1 r2;
///////////////////////////////
Hope this helps.
--Hideo Fujii
OriginLab