Origin Ver. 8G SR2 v8.0891
Operating System: WinXP
Hi,
I imported 31 data sheets into one Book (one sheet for each day of a month).
The comment line contains the file name aka. the date.
range a = [Book2]Sheet18!Col(B);
range b = [Book1]A18!Col(B);
b = a * (some function);
Now I want to copy these comment lines into another book with 31 sheets, to assign the right date to the data columns in the comment lines in Book2:
I tried this
range c = [Book2]sheet1!col(B)[Co]
range d = [Book1]A31!col(B)[Co]
c=d;
[Co] = Comment
It didnt work...
Can someone help?