hi ,
I have two files, a.xls and b.xls.
The contents of a.xls are as follows:
A B C
1 aa 1 a
2 bb 2 b
3 cc 3 c
I want to copy the the entire contents of the rows from file a to file b as columns, i.e., file b.xls should look as follows:
A B C
1 aa bb cc
2 1 2 3
3 a b c
I then add my own data below row 3. Using the transpose function does the needful if the number of rows from which data needs to be transferred is known in advance. My problem is:
1. I may insert more rows in file a, which can also be inbetween, i.e., between rows 1 & 2 including blank rows. I want to reflect these changes in file b by inserting a column at the relevant place, so that the data which I have added does not get affected.
2. I want to update the file(b), whenever I open it or whenever I make changes to file a.
Is this possible? Please help.
I have two files, a.xls and b.xls.
The contents of a.xls are as follows:
A B C
1 aa 1 a
2 bb 2 b
3 cc 3 c
I want to copy the the entire contents of the rows from file a to file b as columns, i.e., file b.xls should look as follows:
A B C
1 aa bb cc
2 1 2 3
3 a b c
I then add my own data below row 3. Using the transpose function does the needful if the number of rows from which data needs to be transferred is known in advance. My problem is:
1. I may insert more rows in file a, which can also be inbetween, i.e., between rows 1 & 2 including blank rows. I want to reflect these changes in file b by inserting a column at the relevant place, so that the data which I have added does not get affected.
2. I want to update the file(b), whenever I open it or whenever I make changes to file a.
Is this possible? Please help.