Hello,
You can run the LabTalk script to divide all the Y columns of a worksheet or of a sheet, please active the worksheet:
for(i=1;i<10;i++){ //loop through each column
wks.col = i;
if (wks.col.type!=1) // if the column is not a Y column
continue; //next loop
else
col($(i))=col($(i))*10; // if yes, multiplied by a constant
}
Best regards!
Jason
OriginLab Technical Service