Paste Several Values into one Cell

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all. I have data in several cells (I2:GJ2) on one row. I want to copy all of this data into one cell as it appears now (in a particular sequence). Is this possible? Thx in advance.
 
Not sure if this is what you want but to concatenate data from several cells
into 1 cell, use formula =Concatenate(I2," ",H2," ",G2) just add more cell
references with commas and " " to give a space between each cell value for
all the cells you want.


sgarrett said:
Hi all. I have data in several cells (I2:GJ2) on one row. I want to copy
all of this data into one cell as it appears now (in a particular sequence).
Is this possible? Thx in advance.
 
Thanks, but that function won't allow over 30 arguments. I have much more than that to enter. Is there some other way to do it? Thanks again.
 
=a1&" "&b1&" "&c1&" "&d1&" "&text(e1,"yyyy/mm/dd")

(you can use =text() to include the formatted version of the cell, too.)

=concatenate(upto30)&" "&concatenate(30more)
Until your done
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top