+ Reply to Thread
Results 1 to 3 of 3

Split cell before number?

  1. #1
    Registered User
    Join Date
    02-09-2008
    Posts
    1

    Split cell before number?

    I have a column of cells that each contain a journal name followed by a date. I wish to split the cell into two, with one cell containing the journal name and the other cell containing the date.

    For instance, a cell might now contain "Emergency Radiology 2000"

    I want it to be split into "Emergency Radiology" in one cell and "2000" in another.

    In other words, I need to learn to split at the first numerical character (which above would be "2", but is different for different cells).

    Thanks so much!!! I eagerly await any responses.

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Assumes always two spaces as per example

    To return text
    =MID(A1,1,FIND(" ",A1,FIND(" ",A1)+1))
    to return no

    =RIGHT(A1,LEN(A1)-FIND(" ",A1,FIND(" ",A1)+1))
    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Alpha part: =TRIM( LEFT(A1, MIN( FIND({"0","1","2","3","4","5","6","7","8","9"}, A1 & 1234567890) -1) ) )

    Everything starting with the first numeric character: =MID(A1, MIN( FIND({"0","1","2","3","4","5","6","7","8","9"}, A1 & 1234567890) ), 100)

+ 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