+ Reply to Thread
Results 1 to 5 of 5

Split cell contents

Hybrid View

  1. #1
    Registered User
    Join Date
    10-21-2014
    Location
    Canada
    MS-Off Ver
    MS Office 2010
    Posts
    28

    Split cell contents

    Hi everyone,

    I have several cells with a various amount of 8-digit numbers in them (see below for example). Some cells have anywhere between zero to twenty 8-digit numbers in them. How can I split up these cells, so that it pulls each 8-digit number and puts it into its own cell?

    10000000
    10000008
    21546587
    68555898
    10035288


    I know I can use text-to-columns with a fixed width, but this would take forever. VBA code perhaps?

    Thanks!!

  2. #2
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Split cell contents

    Hi,

    try this solution.
    Attached Files Attached Files
    Happy Computing ,

    Xlbiznes.

    To show your appreciation please click *

  3. #3
    Registered User
    Join Date
    10-21-2014
    Location
    Canada
    MS-Off Ver
    MS Office 2010
    Posts
    28

    Re: Split cell contents

    Hey xlbiznes!

    That doesn't work for my project, the thing is each cell looks like this:

    xxxx
    xxxx
    xxxx
    xxxx

    So the problem is that the delimiter as a space won't work, since there are no spaces.

    Any thoughts? Thanks for the code though, this is exactly how I want to approach the project.

  4. #4
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Split cell contents

    Maybe:

    Sub Johnatha()
    Dim x As Long
    Dim y As Long
    Dim i As Long
    Dim z As Long
    Dim r As Long
    
    For r = 1 To Range("A" & Rows.Count).End(3).Row
    y = Len(Range("A" & r))
    x = y / 8
    z = 8
    For i = 2 To x
        Cells(r, i).Formula = "=RIGHT(LEFT(" & Cells(r, 1).Address & "," & z & "),8)"
        Cells(r, i).Value = Cells(r, i).Value
        z = z + 9
    Next i
    Next r
    End Sub
    Last edited by JOHN H. DAVIS; 11-06-2014 at 04:25 PM.

  5. #5
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Split cell contents

    here is the updated solution.
    Attached Files Attached Files

+ 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. Split up contents of cell
    By Chantal4130 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 05-02-2014, 08:58 AM
  2. [SOLVED] split the cell contents
    By baishi in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 08-10-2012, 05:05 PM
  3. Split cell contents over multiple rows based on cell contents
    By naigy in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 01-17-2011, 05:38 PM
  4. split cell contents
    By DaveRust in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 03-04-2010, 11:51 AM
  5. Split contents of a cell
    By mattmac in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-30-2009, 10:51 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