Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
Kirill1996
Posted - 06/24/2018 : 3:45:01 PM Origin Ver. and Service Release: 8.1.34.90 Operating System: windows 7 Hi, I have a number of workbooks in my project, and I want to differentiate column in each of them.
If I try differentiate iy:=(Col(A),Col(B)); it works only in one workbook, so I tried:
doc -e W // loop over all workbooks in project { win -o %H{ differentiate iy:=(Col(A),Col(B)); } }; and that doesn't work
I'd appreciate for some help
1 L A T E S T R E P L I E S (Newest First)
yuki_wu
Posted - 06/24/2018 : 9:59:31 PM Hi,
User the following script is okay.
// loop over all worksheets in project
doc -e LB {
differentiate iy:=(Col(A),Col(B));
}