To concatenate two cells to one cell and have them in two different line use the below technique.
Lets say A1 has This is line one
B1 has This is line two
To have C1 as This is line one This is line two give =CONCATENATE(A1," ",B1)
To have C1 as This is line one
This is line two
give =A1&CHAR(10)&B1
Lets say A1 has This is line one
B1 has This is line two
To have C1 as This is line one This is line two give =CONCATENATE(A1," ",B1)
To have C1 as This is line one
This is line two
give =A1&CHAR(10)&B1
Comments
Post a Comment