Looking for a formula to insert "Alt+Enter" into a cell

makamal

New Member
Joined
Apr 23, 2014
Messages
5
Greetings to everyone,

How can I convert a cell contains data separated with a comma, like this:

S386006A,S386006B,S386006C,S386006D,S386006E,S386006F,S386006G,S386006H,S386006I,S386006J

To a cell with data similar to using "Alt+Enter" keys, like this:

S386006A
S386006B
S386006C
S386006D
S386006E
S386006F
S386006G
S386006H
S386006I
S386006J

Your immediate response will be highly appreciated. Thanks
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
replace all commas via
CTRL-H
find what : ,
replace with : ALT then enter via the number pad 0010
ALT-A for replace all

hth
 
Upvote 0
Given in A1:
S386006A,S386006B,S386006C,S386006D,S386006E,S386006F,S386006G,S386006H,S386006I,S386006JS386006A
S386006B
S386006C
S386006D
S386006E
S386006F
S386006G
S386006H
S386006I
S386006J

<colgroup><col><col></colgroup><tbody>
</tbody>

Formula in B1 is =TRIM(MID(SUBSTITUTE(SUBSTITUTE(","&$A$1&",", ",", REPT(" ",255), ROW(2:2)), ",", REPT(" ",255), ROW(1:1)), 255, 255)) copied down till needed.

Would that work for you?
 
Upvote 0
Given in A1:
S386006A,S386006B,S386006C,S386006D,S386006E,S386006F,S386006G,S386006H,S386006I,S386006JS386006A
S386006B
S386006C
S386006D
S386006E
S386006F
S386006G
S386006H
S386006I
S386006J

<tbody>
</tbody>

Formula in B1 is =TRIM(MID(SUBSTITUTE(SUBSTITUTE(","&$A$1&",", ",", REPT(" ",255), ROW(2:2)), ",", REPT(" ",255), ROW(1:1)), 255, 255)) copied down till needed.

Would that work for you?
Thanks for the prompt reply.
It works, but I want the result to be in one cell.
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,746
Members
449,050
Latest member
excelknuckles

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