+ Reply to Thread
Results 1 to 4 of 4

extracting data without using delimiter

  1. #1
    Registered User
    Join Date
    07-29-2015
    Location
    norfolk
    MS-Off Ver
    10
    Posts
    48

    extracting data without using delimiter

    hi guys i thought i had this wrapped but sadly not

    in cell d2 i have 9-6
    in cell aa2 i need the 9 and
    in cell ab2 i need the 6

    i previously used text to columns and a delimiter of -

    however as i update this spreadsheet daily i wouldlike it to be done by formula instead
    ie tomorrowcell d2 might be 10-7

    thanks in advance
    Last edited by sfoll; 07-30-2015 at 01:33 PM.

  2. #2
    Forum Contributor
    Join Date
    07-13-2015
    Location
    Quebec, Canada
    MS-Off Ver
    2013
    Posts
    232

    Re: extracting data without using delimiter

    =left(d2,find("-",d2)-1)
    =right(d2,len(d2)-find("-",d2))

  3. #3
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: extracting data without using delimiter

    In AA2
    =TRIM(LEFT(D2, SEARCH("-",D2)-1))+0
    In AB2
    =TRIM(MID(D2, SEARCH("-",D2)+1, 10))+0
    How's that?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  4. #4
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: extracting data without using delimiter

    If you just want the values and not necessarily wanting the numbers to not be text:
    This will extract the number left of the -
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    This will extract the number right of the -
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    If you want the values to be numbers and not text, add *1 to each formula and format as GENERAL or NUMBER
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    and
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

+ 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. Replies: 10
    Last Post: 01-12-2015, 01:19 AM
  2. Extracting data from file in directory and extracting filename
    By brad999 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-20-2014, 11:21 AM
  3. [SOLVED] Separating multiple data (w delimiter) from one cell to many cells
    By rocketeer425 in forum Excel General
    Replies: 6
    Last Post: 02-14-2014, 03:56 AM
  4. [SOLVED] Splitting data based on delimiter
    By sathishkm in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 02-11-2014, 05:59 PM
  5. Replies: 4
    Last Post: 05-02-2013, 11:16 AM
  6. Replies: 2
    Last Post: 01-29-2013, 02:46 PM
  7. Parse Data between 2nd and 3rd delimiter
    By gav0101 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-22-2009, 03:45 PM

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