I'm using open office (likely similar solution for excel) and I need to copy about 1200 rows of data to be appended to the 1200 adjacent columns rows without replacing that columns data. In other words I need to copy data in cell A to cell B so that cell B stays the same just adds A to it.... so cell B would become BA. Any help?
How to copy/paste cell data into existing cell data?
Collapse
X
-
Tags: None
-
-
Comment
-
Comment
-
-
Comment
-
Eddy is right that concatenate is the correct formula to use (well it is in excel anyway) but based on the data on his column contents his formula should have been =concatenate(b1,a1) not as he put it.
I haven't used open office for many years and whilst most excel formulas do work sometimes they need a little tweak so if you can't get concatenate to work, izombie's solution is just as good, namely
1.keep domain data in column a
2.add cocks etc in column b
3. column c type +a1&b1
4. copy column c down the page as far as you need to.
If you want to do this many times with different data you can just copy and paste value (to another column or spreadsheet) your column c data and rinse and repeat over and overLast edited by lagcam; 02-09-2014, 05:04 AM.Comment
-
Oops - Sorry - Don't drink and code folks...Eddy is right that concatenate is the correct formula to use (well it is in excel anyway) but based on the data on his column contents his formula should have been =concatenate(b1,a1) not as he put it.
I haven't used open office for many years and whilst most excel formulas do work sometimes they need a little tweak so if you can't get concatenate to work, izombie's solution is just as good, namely
1.keep domain data in column a
2.add cocks etc in column b
3. column c type +a1&b1
4. copy column c down the page as far as you need to.
If you want to do this many times with different data you can just copy and paste value (to another column or spreadsheet) your column c data and rinse and repeat over and overComment
-
-
I love spreadsheets and concatenate is one of my favourite formulas.
It is very useful for reconciling accounts with huge volume transaction because you can use it to build strings of data which you can then use in conjunction with "match" function.Comment

Comment