Thanks for the quick reply!
I got an error trying to access the site though. Can you please post another link?
I looked into the URL and played around with it to get it to work
https://sites.google.com/a/madrocket...ows-to-columns
Thanks for the quick reply!
I got an error trying to access the site though. Can you please post another link?
I looked into the URL and played around with it to get it to work
https://sites.google.com/a/madrocket...ows-to-columns
Last edited by JBeaucaire; 12-27-2019 at 10:53 PM.
Last edited by JBeaucaire; 12-27-2019 at 10:54 PM.
_________________
Microsoft MVP 2010 - Excel
Visit: Jerry Beaucaire's Excel Files & Macros
If you've been given good help, use theicon below to give reputation feedback, it is appreciated.
Always put your code between code tags. [CODE] your code here [/CODE]
?None of us is as good as all of us? - Ray Kroc
?Actually, I *am* a rocket scientist.? - JB (little ones count!)
Works like a charm.
Hate to be difficult but what if there are semicolons at the end sometimes?
For example sometimes it would look like:
456789 john; mary; bob;
343400 gary, frank;
230200 fisher; john; harry; ron;
545777 john
So the first three rows would make an extra row which would be blank but the last would not.
Code I'm using:
![]()
Option Explicit Sub ParseByColumn() 'Split delimited column data into separate rows 'duplicate other column values as needed Dim LR As Long, Rw As Long, Col As Long, MyVal As Long Dim MyArr As Variant, LC As Long Dim Titles As Long 'Application.ScreenUpdating = False Titles = 8 - MsgBox("Does the data have titles in row1?", vbYesNo, "Include row1?") 'set column to evaluate: 1="A", 2="B", 3="C", etc... Col = 5 LR = Range("A" & Rows.Count).End(xlUp).Row For Rw = LR To Titles Step -1 'separated by commas If InStr(Cells(Rw, Col), ",") > 0 Then MyArr = Split(Cells(Rw, Col), ",") 'separated by semicolons ElseIf InStr(Cells(Rw, Col), ";") > 0 Then MyArr = Split(Cells(Rw, Col), ";") End If Rows(Rw).Copy Rows(Rw + 1 & ":" & Rw + UBound(MyArr)).Insert xlShiftDown Cells(Rw, Col).Resize(UBound(MyArr) + 1).Value = _ Application.WorksheetFunction.Transpose(MyArr) Next Rw 'Cleanup appearance Cells.Columns.AutoFit Cells.Rows.AutoFit Application.CutCopyMode = False Application.ScreenUpdating = True End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks