Origin Ver. and Service Release (Select Help-->About Origin): Operating System: Hi Everyone I have around 100 worksheets in project. I want to divide column(F)with column(C) and put in column(G) I want to do same for all worksheets in the project. Is their any func. or tool. Any help is appreciated.
Thank you for your help. Actually,I know this script. But, My question is: I have around 150 sheets in project, I want to apply for all the sheets at one time so that each sheet will divide col(g)=col(f)/col(c)project window rather than doing for each sheet.It would be great help. I appreciate for your help and time. Thanks, Naresh
quote:Originally posted by larry_lan
Hi:
Run this script in command window.
doc -e w {
wks.addcol(G); // If there is already a column named G, delete this row.
col(g) = col(f)/col(c);
}
Please read our LabTalk help for more about scripts.
The "doc -e w" command will execute the same script to all worksheets in the project, so, all your worksheets will be changed. There is no GUI to do that.