+ Reply to Thread
Results 1 to 2 of 2

Split single cell to multiple rows

Hybrid View

  1. #1
    Registered User
    Join Date
    08-06-2015
    Location
    Germany
    MS-Off Ver
    2010
    Posts
    1

    Split single cell to multiple rows

    Hi,


    I'm trying to write a VBA and place it in an excel sheet so that VBA gets triggered on opening excel.
    Curently what I have is:


    Type   	Name	        Number
    Cream	Test1	        40, do
    Cream	Test21	20,last,80, no
    Cream	Test30	no man, 20, value
    Cream	Test8	        30,no way,yes


    What I am looking for is:
    Type   	Name	  Find Number
    Cream	Test1	   40
                               do
    Cream	Test2    20
                               last
                               80
                               no
    Cream	Test30  no man
                               20
                               value
    Cream	Test8	  30
                               no way
    In result, the values of the third column are in different rows
    Last edited by JBeaucaire; 08-07-2015 at 01:45 AM.

  2. #2
    Forum Expert
    Join Date
    04-23-2009
    Location
    Matrouh, Egypt
    MS-Off Ver
    Excel 2013
    Posts
    6,892

    Re: Split single cell to multiple rows

    Hi Jet
    It's preferred to attach a sample of the desired results
    Generally try this code (suppose your headers in row 1 and the target column is C)
    Sub SplitIt()
        Dim Cell As Range, Arr, I As Long, J As Long
        For I = Cells(Rows.Count, 3).End(xlUp).Row To 2 Step -1
            If InStr(Cells(I, 3).Value, ",") > 0 Then
                Arr = Split(Trim(Cells(I, 3).Value), ",")
                For J = 0 To UBound(Arr)
                    If J <> 0 Then Cells(I, 3).Offset(1, 0).EntireRow.Insert Shift:=xlDown
                    Arr(J) = Trim(Arr(J))
                Next J
                Cells(I, 3).Resize(UBound(Arr) + 1) = Application.Transpose(Arr)
            End If
        Next I
    End Sub
    < ----- Please click the little star * next to add reputation if my post helps you
    Visit Forum : From Here

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] VBA Split Cell Contents to New Rows & Copy Cells containing single values to the new rows
    By jaimelwilson in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-14-2017, 05:30 PM
  2. [SOLVED] Split Single Row into Multiple Rows
    By jfyang13 in forum Excel General
    Replies: 4
    Last Post: 10-27-2014, 10:39 AM
  3. Split single row into multiple rows
    By mbasam in forum Excel General
    Replies: 10
    Last Post: 09-12-2013, 06:09 PM
  4. Replies: 9
    Last Post: 06-06-2013, 11:25 PM
  5. Replies: 10
    Last Post: 07-22-2012, 07:32 PM
  6. Macro to split a single cell data into rows and copying other cells as it is in rows
    By Pankaj Sonawane in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 08-25-2010, 07:09 PM
  7. Replies: 2
    Last Post: 09-24-2006, 08:33 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