Results 1 to 22 of 22

split multiple semicolon separated values into new rows for multiple columns

Threaded View

  1. #16
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Cool Hope you don't forget any case, try this !

    Sub SplitColumns()
        Dim SP(2 To 3), TX$(2 To 3), UB&(2 To 3)
    
                                AR = [A1].CurrentRegion.Value
                                U& = UBound(AR, 2):  If U < 3 Then Exit Sub
                                B& = UBound(AR)
        Application.ScreenUpdating = False
                                W& = 1
        For R& = 2 To B
            For C& = 2 To 3
                SP(C) = Split(AR(R, C), ";")
                UB(C) = UBound(SP(C))
                If UB(C) < 0 Then TX(C) = "" Else TX(C) = Trim$(SP(C)(UB(C)))
            Next C
    
            For N& = 0 To UB(2 - (UB(3) > UB(2)))
                W = W + 1
    
                For C = 1 To U
                    With Cells(W, C)
                        Select Case C
                               Case 2, 3
                                    If N < UB(C) Then .Value = Trim$(SP(C)(N)) Else .Value = TX(C)
    
                               Case Else
                                    .Value = AR(R, C)
                        End Select
                    End With
                Next C
            Next N
        Next R
    
        For C = 1 To U
            Cells(B + 1, C).Resize(W - B).NumberFormat = Cells(2, C).NumberFormat
        Next
    
        Application.ScreenUpdating = True
        End
    End Sub
    Hope my reputation will increase …
    Last edited by Marc L; 01-03-2014 at 03:46 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Split multiple values in a cell to multiple rows
    By karmithr in forum Excel General
    Replies: 2
    Last Post: 03-04-2013, 08:34 PM
  2. Import multiple semicolon separated csv files
    By Ivodv in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 12-07-2012, 08:17 AM
  3. CSV file with two columns multiple values separated by pipe. Need to Combine
    By nikythebest in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 07-01-2012, 04:30 AM
  4. Best way to parse colums and rows w/ multiple values separated by comma?
    By Sutukh19 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-28-2009, 04:37 AM
  5. Column with semicolon-separated values
    By nsv in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-22-2006, 08:22 AM

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