Merge data from differrent cells and arrange resulting text

RAlmodovar

New Member
Joined
Sep 4, 2015
Messages
3
Office Version
  1. 2013
Platform
  1. Windows
I'm able to merge data from two cells into a third cell using concatenate.
I need help arranging the resulting text.
i.e.
Cell A1: xxx 1234
Cell B1: ddd

Combine to show on cell C1:
line 1: 1234
line 2: ddd xxx

222.JPG
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Your question is somewhat vague...

1) Is the number always 4 digits long?

2) Are the two text strings always 3 characters long?

3) If not always 3 characters long, can the text have spaces within it?
 
Upvote 0
1) Is the number always 4 digits long? no, the number is 3 digits and my have one, two or three decimal places
2) Are the two text strings always 3 characters long? yes

Cell A1 is always 3 letters "space" and a 3-digit number with one, two or three decimal places
Cell B1 is always 3 letters
 
Upvote 0
Okay, then give this formula a try...

=MID(A1,4,9)&CHAR(10)&B1&" "&LEFT(A1,3)

Edit Note: Don't forget to turn on Wrap Text for the cell you put the formula in.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,615
Messages
6,120,538
Members
448,970
Latest member
kennimack

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top