+ Reply to Thread
Results 1 to 9 of 9

extract numbers, convert to date

  1. #1
    gkaspen
    Guest

    extract numbers, convert to date

    I imported a comma delimined .txt file into Excel. One column is formated
    (for example) 070794MEFKMAG. This is a person's birthday (mmddyy) and then
    parts of their name. I want to extract the birthdate numbers, convert them to
    a date and subtract that date from todays date. I've been able to extract the
    numbers [=MID(A12,ROW($1:$9),6)] giving me 070794, but haven't been able to
    convert them to any date that makes sense.

    Any suggestions



  2. #2
    Forum Expert swatsp0p's Avatar
    Join Date
    10-07-2004
    Location
    Kentucky, USA
    MS-Off Ver
    Excel 2010
    Posts
    1,545
    Try "Text to Columns" on your extracted date number and set the format on the last tab to "mdy"

    HTH
    Bruce
    The older I get, the better I used to be.
    USA

  3. #3
    artier9425
    Guest

    RE: extract numbers, convert to date

    I used the following formula =TODAY() -
    CONCATENATE(MID(F11,1,2),"/",MID(F11,3,2),"/",MID(F11,5,2))

    F11 = 070794

    I hope that helps

    "gkaspen" wrote:

    > I imported a comma delimined .txt file into Excel. One column is formated
    > (for example) 070794MEFKMAG. This is a person's birthday (mmddyy) and then
    > parts of their name. I want to extract the birthdate numbers, convert them to
    > a date and subtract that date from todays date. I've been able to extract the
    > numbers [=MID(A12,ROW($1:$9),6)] giving me 070794, but haven't been able to
    > convert them to any date that makes sense.
    >
    > Any suggestions
    >
    >


  4. #4
    Peo Sjoblom
    Guest

    Re: extract numbers, convert to date

    =DATE(MID(A12,5,2),MID(A12,1,2),MID(A12,3,2))

    assuming the numbers are always 6 digits


    --

    Regards,

    Peo Sjoblom


    "gkaspen" <gkaspen@discussions.microsoft.com> wrote in message
    news:1BAA01DB-4EE3-4790-9E2F-6F698507C463@microsoft.com...
    > I imported a comma delimined .txt file into Excel. One column is formated
    > (for example) 070794MEFKMAG. This is a person's birthday (mmddyy) and then
    > parts of their name. I want to extract the birthdate numbers, convert them

    to
    > a date and subtract that date from todays date. I've been able to extract

    the
    > numbers [=MID(A12,ROW($1:$9),6)] giving me 070794, but haven't been able

    to
    > convert them to any date that makes sense.
    >
    > Any suggestions
    >
    >




  5. #5
    Ron Rosenfeld
    Guest

    Re: extract numbers, convert to date

    On Tue, 1 Mar 2005 11:45:06 -0800, "gkaspen"
    <gkaspen@discussions.microsoft.com> wrote:

    >I imported a comma delimined .txt file into Excel. One column is formated
    >(for example) 070794MEFKMAG. This is a person's birthday (mmddyy) and then
    >parts of their name. I want to extract the birthdate numbers, convert them to
    >a date and subtract that date from todays date. I've been able to extract the
    >numbers [=MID(A12,ROW($1:$9),6)] giving me 070794, but haven't been able to
    >convert them to any date that makes sense.
    >
    >Any suggestions
    >


    To convert the above string into a date, assuming your regional settings are
    US:

    =--TEXT(LEFT(A1,6),"00\/00\/00")

    So if you want, for example, age in years:

    =DATEDIF(--TEXT(LEFT(A1,6),"00\/00\/00"),TODAY(),"y")




    --ron

  6. #6
    Gord Dibben
    Guest

    Re: extract numbers, convert to date

    If data is consistent.........

    Data>Text to Columns>Fixed Width>Next>Column Data Format>Date DMY or MDY for
    column 1.

    Select Column 2 and Skip.

    Finish.

    Now you have dates. Do your subtraction or use the Datedif Function which
    Chip Pearson has instructions for.

    http://www.cpearson.com/excel/datedif.htm


    Gord Dibben Excel MVP


    On Tue, 1 Mar 2005 11:45:06 -0800, "gkaspen"
    <gkaspen@discussions.microsoft.com> wrote:

    >I imported a comma delimined .txt file into Excel. One column is formated
    >(for example) 070794MEFKMAG. This is a person's birthday (mmddyy) and then
    >parts of their name. I want to extract the birthdate numbers, convert them to
    >a date and subtract that date from todays date. I've been able to extract the
    >numbers [=MID(A12,ROW($1:$9),6)] giving me 070794, but haven't been able to
    >convert them to any date that makes sense.
    >
    >Any suggestions
    >



  7. #7
    gkaspen
    Guest

    Re: extract numbers, convert to date

    Ron,

    Thanks, that did exactly what I needed done. But I'm curious what the
    forward AND backward slashes in the date format does?

    Greg

    "Ron Rosenfeld" wrote:

    > On Tue, 1 Mar 2005 11:45:06 -0800, "gkaspen"
    > <gkaspen@discussions.microsoft.com> wrote:
    >
    > >I imported a comma delimined .txt file into Excel. One column is formated
    > >(for example) 070794MEFKMAG. This is a person's birthday (mmddyy) and then
    > >parts of their name. I want to extract the birthdate numbers, convert them to
    > >a date and subtract that date from todays date. I've been able to extract the
    > >numbers [=MID(A12,ROW($1:$9),6)] giving me 070794, but haven't been able to
    > >convert them to any date that makes sense.
    > >
    > >Any suggestions
    > >

    >
    > To convert the above string into a date, assuming your regional settings are
    > US:
    >
    > =--TEXT(LEFT(A1,6),"00\/00\/00")
    >
    > So if you want, for example, age in years:
    >
    > =DATEDIF(--TEXT(LEFT(A1,6),"00\/00\/00"),TODAY(),"y")
    >
    >
    >
    >
    > --ron
    >


  8. #8
    Ron Rosenfeld
    Guest

    Re: extract numbers, convert to date

    On Tue, 1 Mar 2005 13:19:03 -0800, "gkaspen"
    <gkaspen@discussions.microsoft.com> wrote:

    >Ron,
    >
    >Thanks, that did exactly what I needed done. But I'm curious what the
    >forward AND backward slashes in the date format does?
    >
    >Greg


    From HELP for number formatting:

    Displaying both text and numbers To display both text and numbers in a cell,
    enclose the text characters in double quotation marks (" ") or precede a single
    character with a backslash (\).

    It is simpler (and requires fewer characters) to precede the desired character
    (/) with a backslash.

    The backslash, of course, is the separator for the portions of the date.

    The equivalent, without the backslashes, would be:

    =--TEXT(LEFT(A1,6),"00""/""00""/""00")


    --ron

  9. #9
    Ron Rosenfeld
    Guest

    Re: extract numbers, convert to date

    On Tue, 01 Mar 2005 19:52:16 -0500, Ron Rosenfeld <ronrosenfeld@nospam.org>
    wrote:

    >The backslash, of course, is the separator for the portions of the date.


    I had that mixed up, of course. But you get the point.


    --ron

+ 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