excel - Multiple lines of text into one cell -


I am thinking how to move a line from different cells to different cells.

For example

My
dog is brownish

My dog ​​is brown

< P> Is it possible?

Thanks

You can try this command:

<

= CONCATENATE (A1, A2, A3, A4)

but it will produce "My Dog Sea Brown" If you have a white space cell "My" "dog" ....

If you want to add a white spot, you can do this:

= CONCATENATE (A1, "", A2, "", A3, "", A4)

You can find more information.


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -