VBA to insert mutiple lines in the same celll

VbaHell

Well-known Member
Joined
Jan 30, 2011
Messages
1,220
Hello all

I hope someone can help on this please

I am looking for some VBA that will add lines into the same cell.

In column "T" I have data that is followed by "," a comma then more data followed by "," a comma

Example:

dog, cat, horse

What I need is

dog
cat
horse

but in the same cell

Hoping someone can help on this
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Try this:-
Code:
[COLOR="Navy"]Sub[/COLOR] MG26Sep30
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range
[COLOR="Navy"]Set[/COLOR] Rng = Range(Range("T1"), Range("T" & Rows.Count).End(xlUp))
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng
    Dn.Value = Replace(Dn.Value, ", ", vbCrLf)
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
I believe this non-looping macro will also work for you...
Code:
[table="width: 500"]
[tr]
	[td]Sub CommaSpaceToLineFeed()
  Columns("T").Replace ", ", vbLf, xlPart, , , False, False
  Intersect(Columns("T"), ActiveSheet.UsedRange).Rows.AutoFit
End Sub[/td]
[/tr]
[/table]
 
Upvote 0
Thanks Rick, not sure how this works, but I will try this out when I'm back at my desk
 
Upvote 0

Forum statistics

Threads
1,215,456
Messages
6,124,939
Members
449,197
Latest member
k_bs

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