+ Reply to Thread
Results 1 to 8 of 8

Converting Text Field to Time

Hybrid View

Guest Converting Text Field to Time 03-14-2005, 06:06 AM
mangesh_yadav Yes, it is. Mangesh 03-14-2005, 06:09 AM
Guest Re: Converting Text Field to... 03-14-2005, 07:06 AM
Guest Re: Converting Text Field to... 03-14-2005, 09:06 PM
mangesh_yadav There's a possibility that... 03-15-2005, 12:02 AM
Guest Re: Converting Text Field to... 03-15-2005, 05:06 AM
Guest Re: Converting Text Field to... 03-15-2005, 06:06 AM
Guest Re: Converting Text Field to... 03-14-2005, 12:06 PM
  1. #1
    A P
    Guest

    Converting Text Field to Time

    Is this possible?

    Me



  2. #2
    Forum Contributor
    Join Date
    06-10-2004
    Location
    India
    Posts
    1,066
    Yes, it is.

    Mangesh

  3. #3
    Bob Phillips
    Guest

    Re: Converting Text Field to Time

    Probably, but what does the text field look like.

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "A P" <ap@textguru.ph> wrote in message
    news:uRvCdTHKFHA.3916@TK2MSFTNGP14.phx.gbl...
    > Is this possible?
    >
    > Me
    >
    >




  4. #4
    A P
    Guest

    Re: Converting Text Field to Time

    I have a time column with this format: 05:12 am but when I will run
    autofilter, it doesn't identify a condition. Sample, I want to view time
    which is less than 05:00 am. I've tried FOrmat cell and change it to Time
    but still, autofilter doesnt work. What Im thinking is I will use a function
    to convert the cell to time. Hope you get my question.

    Me

    "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    news:OZin1$HKFHA.4064@tk2msftngp13.phx.gbl...
    > Probably, but what does the text field look like.
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "A P" <ap@textguru.ph> wrote in message
    > news:uRvCdTHKFHA.3916@TK2MSFTNGP14.phx.gbl...
    > > Is this possible?
    > >
    > > Me
    > >
    > >

    >
    >




  5. #5
    Forum Contributor
    Join Date
    06-10-2004
    Location
    India
    Posts
    1,066
    There's a possibility that your time is a text string, in which case it will not work. Just to test this, change the format of this cell to numbers, and your time should appear as a number and not remain the same. If it does not change to a number than your time is a text string.

    To convert this text string you will have to use something like this:
    =TIME(LEFT(A1,2),MID(A1,4,2),0)
    Assumign that your time string is in cell A1

    - Mangesh

  6. #6
    Bob Phillips
    Guest

    Re: Converting Text Field to Time

    Okay. Assuming the data is in A2:An, in B2 add this formula

    =TIMEVALUE(A1)

    and then copy down. Now filter on column B.

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "A P" <ap@textguru.ph> wrote in message
    news:Osu6YQPKFHA.1540@TK2MSFTNGP14.phx.gbl...
    > I have a time column with this format: 05:12 am but when I will run
    > autofilter, it doesn't identify a condition. Sample, I want to view time
    > which is less than 05:00 am. I've tried FOrmat cell and change it to Time
    > but still, autofilter doesnt work. What Im thinking is I will use a

    function
    > to convert the cell to time. Hope you get my question.
    >
    > Me
    >
    > "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    > news:OZin1$HKFHA.4064@tk2msftngp13.phx.gbl...
    > > Probably, but what does the text field look like.
    > >
    > > --
    > >
    > > HTH
    > >
    > > RP
    > > (remove nothere from the email address if mailing direct)
    > >
    > >
    > > "A P" <ap@textguru.ph> wrote in message
    > > news:uRvCdTHKFHA.3916@TK2MSFTNGP14.phx.gbl...
    > > > Is this possible?
    > > >
    > > > Me
    > > >
    > > >

    > >
    > >

    >
    >




  7. #7
    A P
    Guest

    Re: Converting Text Field to Time

    Thanks Bob! thats what I need!


    "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    news:OHgbZyTKFHA.2604@TK2MSFTNGP10.phx.gbl...
    > Okay. Assuming the data is in A2:An, in B2 add this formula
    >
    > =TIMEVALUE(A1)
    >
    > and then copy down. Now filter on column B.
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "A P" <ap@textguru.ph> wrote in message
    > news:Osu6YQPKFHA.1540@TK2MSFTNGP14.phx.gbl...
    > > I have a time column with this format: 05:12 am but when I will run
    > > autofilter, it doesn't identify a condition. Sample, I want to view time
    > > which is less than 05:00 am. I've tried FOrmat cell and change it to

    Time
    > > but still, autofilter doesnt work. What Im thinking is I will use a

    > function
    > > to convert the cell to time. Hope you get my question.
    > >
    > > Me
    > >
    > > "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message
    > > news:OZin1$HKFHA.4064@tk2msftngp13.phx.gbl...
    > > > Probably, but what does the text field look like.
    > > >
    > > > --
    > > >
    > > > HTH
    > > >
    > > > RP
    > > > (remove nothere from the email address if mailing direct)
    > > >
    > > >
    > > > "A P" <ap@textguru.ph> wrote in message
    > > > news:uRvCdTHKFHA.3916@TK2MSFTNGP14.phx.gbl...
    > > > > Is this possible?
    > > > >
    > > > > Me
    > > > >
    > > > >
    > > >
    > > >

    > >
    > >

    >
    >




  8. #8
    JulieD
    Guest

    Re: Converting Text Field to Time

    you might like to check out the TIME function, if you'ld like more
    assistance please post back with a sample or two of your "text" typed into
    your reply.

    Cheers
    JulieD

    "A P" <ap@textguru.ph> wrote in message
    news:uRvCdTHKFHA.3916@TK2MSFTNGP14.phx.gbl...
    > Is this possible?
    >
    > Me
    >
    >




+ 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