+ Reply to Thread
Results 1 to 7 of 7

IF Loop to Separate Names

Hybrid View

  1. #1
    Registered User
    Join Date
    09-23-2010
    Location
    US
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: IF Loop to Separate Names. Please assist.

    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.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: IF Loop to Separate Names. Please assist.

    Quote Originally Posted by contra76 View Post
    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
    That's the correct link, I clicked it in your post above and in mine and both work fine.
    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 the icon 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!)

  3. #3
    Registered User
    Join Date
    09-23-2010
    Location
    US
    MS-Off Ver
    Excel 2007
    Posts
    23

    Re: IF Loop to Separate Names

    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

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1