+ Reply to Thread
Results 1 to 9 of 9

convert interval to various separate date , time, hr, minutes

  1. #1
    Biff
    Guest

    Re: convert interval to various separate date , time, hr, minutes

    Hi!

    You can get the numeric date by using:

    =INT(A1)

    Format as DATE

    To get the time and strip off the seconds and decimal seconds:

    =TIME(HOUR(A1),MINUTE(A1),0)

    Format as TIME 13:30

    Biff

    "Todd F." <[email protected]> wrote in message
    news:[email protected]...
    >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > to excel format as follows
    >
    > In Impromptu it is in the follwoing format:
    >
    > 000 00:00:00.000
    > days hr, min, seconds, milla seconds
    >
    >
    > In excel I am getting the follwing in my columns:
    >
    > 10/25/05 13:50 ( visually in cell)
    >
    > The format is custom m/d/yy h:mm
    >
    > I need to get clean grabs of just the time in hours and minutes and just
    > the
    > date
    >
    > I can get the date out in text string so date is secondary in concern.
    >
    > I need to do a great deal of time calcs , filters, and pivots - all on
    > time
    >
    > I also need to calc betwen dates with ands with out time.
    >
    > Any suggestions on how to get this cleaned up into the best usable format
    > would be great - I do not mind extra fields.
    >
    > thanks todd
    >
    >




  2. #2
    Todd F.
    Guest

    Re: convert interval to various separate date , time, hr, minutes

    thanks

    "Biff" wrote:

    > Hi!
    >
    > You can get the numeric date by using:
    >
    > =INT(A1)
    >
    > Format as DATE
    >
    > To get the time and strip off the seconds and decimal seconds:
    >
    > =TIME(HOUR(A1),MINUTE(A1),0)
    >
    > Format as TIME 13:30
    >
    > Biff
    >
    > "Todd F." <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > > to excel format as follows
    > >
    > > In Impromptu it is in the follwoing format:
    > >
    > > 000 00:00:00.000
    > > days hr, min, seconds, milla seconds
    > >
    > >
    > > In excel I am getting the follwing in my columns:
    > >
    > > 10/25/05 13:50 ( visually in cell)
    > >
    > > The format is custom m/d/yy h:mm
    > >
    > > I need to get clean grabs of just the time in hours and minutes and just
    > > the
    > > date
    > >
    > > I can get the date out in text string so date is secondary in concern.
    > >
    > > I need to do a great deal of time calcs , filters, and pivots - all on
    > > time
    > >
    > > I also need to calc betwen dates with ands with out time.
    > >
    > > Any suggestions on how to get this cleaned up into the best usable format
    > > would be great - I do not mind extra fields.
    > >
    > > thanks todd
    > >
    > >

    >
    >
    >


  3. #3
    Todd F.
    Guest

    getting clean day count calc out of 2 intervals

    I need to get a clean whole number day when subtracting close interval from
    create interval

    if I simply subtract the two fields I get a gooffy time format that I cannot
    clean up to give me a solid day count numnber so then can do another calc on

    thanks

    "Biff" wrote:

    > Hi!
    >
    > You can get the numeric date by using:
    >
    > =INT(A1)
    >
    > Format as DATE
    >
    > To get the time and strip off the seconds and decimal seconds:
    >
    > =TIME(HOUR(A1),MINUTE(A1),0)
    >
    > Format as TIME 13:30
    >
    > Biff
    >
    > "Todd F." <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > > to excel format as follows
    > >
    > > In Impromptu it is in the follwoing format:
    > >
    > > 000 00:00:00.000
    > > days hr, min, seconds, milla seconds
    > >
    > >
    > > In excel I am getting the follwing in my columns:
    > >
    > > 10/25/05 13:50 ( visually in cell)
    > >
    > > The format is custom m/d/yy h:mm
    > >
    > > I need to get clean grabs of just the time in hours and minutes and just
    > > the
    > > date
    > >
    > > I can get the date out in text string so date is secondary in concern.
    > >
    > > I need to do a great deal of time calcs , filters, and pivots - all on
    > > time
    > >
    > > I also need to calc betwen dates with ands with out time.
    > >
    > > Any suggestions on how to get this cleaned up into the best usable format
    > > would be great - I do not mind extra fields.
    > >
    > > thanks todd
    > >
    > >

    >
    >
    >


  4. #4
    Todd F.
    Guest

    Re: convert interval to various separate date , time, hr, minutes

    the integer does not give me a clean number to do calcs off of - it is still
    a wierd date format even after using your INT it shows upas date and if you
    change to number it goes crazy

    ??????

    "Biff" wrote:

    > Hi!
    >
    > You can get the numeric date by using:
    >
    > =INT(A1)
    >
    > Format as DATE
    >
    > To get the time and strip off the seconds and decimal seconds:
    >
    > =TIME(HOUR(A1),MINUTE(A1),0)
    >
    > Format as TIME 13:30
    >
    > Biff
    >
    > "Todd F." <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > > to excel format as follows
    > >
    > > In Impromptu it is in the follwoing format:
    > >
    > > 000 00:00:00.000
    > > days hr, min, seconds, milla seconds
    > >
    > >
    > > In excel I am getting the follwing in my columns:
    > >
    > > 10/25/05 13:50 ( visually in cell)
    > >
    > > The format is custom m/d/yy h:mm
    > >
    > > I need to get clean grabs of just the time in hours and minutes and just
    > > the
    > > date
    > >
    > > I can get the date out in text string so date is secondary in concern.
    > >
    > > I need to do a great deal of time calcs , filters, and pivots - all on
    > > time
    > >
    > > I also need to calc betwen dates with ands with out time.
    > >
    > > Any suggestions on how to get this cleaned up into the best usable format
    > > would be great - I do not mind extra fields.
    > >
    > > thanks todd
    > >
    > >

    >
    >
    >


  5. #5
    Todd F.
    Guest

    convert interval to various separate date , time, hr, minutes

    I have a interval ( date & time combined) coming out of imrpomtu via a save
    to excel format as follows

    In Impromptu it is in the follwoing format:

    000 00:00:00.000
    days hr, min, seconds, milla seconds


    In excel I am getting the follwing in my columns:

    10/25/05 13:50 ( visually in cell)

    The format is custom m/d/yy h:mm

    I need to get clean grabs of just the time in hours and minutes and just the
    date

    I can get the date out in text string so date is secondary in concern.

    I need to do a great deal of time calcs , filters, and pivots - all on time

    I also need to calc betwen dates with ands with out time.

    Any suggestions on how to get this cleaned up into the best usable format
    would be great - I do not mind extra fields.

    thanks todd



  6. #6
    Biff
    Guest

    Re: convert interval to various separate date , time, hr, minutes

    Hi!

    You can get the numeric date by using:

    =INT(A1)

    Format as DATE

    To get the time and strip off the seconds and decimal seconds:

    =TIME(HOUR(A1),MINUTE(A1),0)

    Format as TIME 13:30

    Biff

    "Todd F." <[email protected]> wrote in message
    news:[email protected]...
    >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > to excel format as follows
    >
    > In Impromptu it is in the follwoing format:
    >
    > 000 00:00:00.000
    > days hr, min, seconds, milla seconds
    >
    >
    > In excel I am getting the follwing in my columns:
    >
    > 10/25/05 13:50 ( visually in cell)
    >
    > The format is custom m/d/yy h:mm
    >
    > I need to get clean grabs of just the time in hours and minutes and just
    > the
    > date
    >
    > I can get the date out in text string so date is secondary in concern.
    >
    > I need to do a great deal of time calcs , filters, and pivots - all on
    > time
    >
    > I also need to calc betwen dates with ands with out time.
    >
    > Any suggestions on how to get this cleaned up into the best usable format
    > would be great - I do not mind extra fields.
    >
    > thanks todd
    >
    >




  7. #7
    Todd F.
    Guest

    Re: convert interval to various separate date , time, hr, minutes

    thanks

    "Biff" wrote:

    > Hi!
    >
    > You can get the numeric date by using:
    >
    > =INT(A1)
    >
    > Format as DATE
    >
    > To get the time and strip off the seconds and decimal seconds:
    >
    > =TIME(HOUR(A1),MINUTE(A1),0)
    >
    > Format as TIME 13:30
    >
    > Biff
    >
    > "Todd F." <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > > to excel format as follows
    > >
    > > In Impromptu it is in the follwoing format:
    > >
    > > 000 00:00:00.000
    > > days hr, min, seconds, milla seconds
    > >
    > >
    > > In excel I am getting the follwing in my columns:
    > >
    > > 10/25/05 13:50 ( visually in cell)
    > >
    > > The format is custom m/d/yy h:mm
    > >
    > > I need to get clean grabs of just the time in hours and minutes and just
    > > the
    > > date
    > >
    > > I can get the date out in text string so date is secondary in concern.
    > >
    > > I need to do a great deal of time calcs , filters, and pivots - all on
    > > time
    > >
    > > I also need to calc betwen dates with ands with out time.
    > >
    > > Any suggestions on how to get this cleaned up into the best usable format
    > > would be great - I do not mind extra fields.
    > >
    > > thanks todd
    > >
    > >

    >
    >
    >


  8. #8
    Todd F.
    Guest

    getting clean day count calc out of 2 intervals

    I need to get a clean whole number day when subtracting close interval from
    create interval

    if I simply subtract the two fields I get a gooffy time format that I cannot
    clean up to give me a solid day count numnber so then can do another calc on

    thanks

    "Biff" wrote:

    > Hi!
    >
    > You can get the numeric date by using:
    >
    > =INT(A1)
    >
    > Format as DATE
    >
    > To get the time and strip off the seconds and decimal seconds:
    >
    > =TIME(HOUR(A1),MINUTE(A1),0)
    >
    > Format as TIME 13:30
    >
    > Biff
    >
    > "Todd F." <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > > to excel format as follows
    > >
    > > In Impromptu it is in the follwoing format:
    > >
    > > 000 00:00:00.000
    > > days hr, min, seconds, milla seconds
    > >
    > >
    > > In excel I am getting the follwing in my columns:
    > >
    > > 10/25/05 13:50 ( visually in cell)
    > >
    > > The format is custom m/d/yy h:mm
    > >
    > > I need to get clean grabs of just the time in hours and minutes and just
    > > the
    > > date
    > >
    > > I can get the date out in text string so date is secondary in concern.
    > >
    > > I need to do a great deal of time calcs , filters, and pivots - all on
    > > time
    > >
    > > I also need to calc betwen dates with ands with out time.
    > >
    > > Any suggestions on how to get this cleaned up into the best usable format
    > > would be great - I do not mind extra fields.
    > >
    > > thanks todd
    > >
    > >

    >
    >
    >


  9. #9
    Todd F.
    Guest

    Re: convert interval to various separate date , time, hr, minutes

    the integer does not give me a clean number to do calcs off of - it is still
    a wierd date format even after using your INT it shows upas date and if you
    change to number it goes crazy

    ??????

    "Biff" wrote:

    > Hi!
    >
    > You can get the numeric date by using:
    >
    > =INT(A1)
    >
    > Format as DATE
    >
    > To get the time and strip off the seconds and decimal seconds:
    >
    > =TIME(HOUR(A1),MINUTE(A1),0)
    >
    > Format as TIME 13:30
    >
    > Biff
    >
    > "Todd F." <[email protected]> wrote in message
    > news:[email protected]...
    > >I have a interval ( date & time combined) coming out of imrpomtu via a save
    > > to excel format as follows
    > >
    > > In Impromptu it is in the follwoing format:
    > >
    > > 000 00:00:00.000
    > > days hr, min, seconds, milla seconds
    > >
    > >
    > > In excel I am getting the follwing in my columns:
    > >
    > > 10/25/05 13:50 ( visually in cell)
    > >
    > > The format is custom m/d/yy h:mm
    > >
    > > I need to get clean grabs of just the time in hours and minutes and just
    > > the
    > > date
    > >
    > > I can get the date out in text string so date is secondary in concern.
    > >
    > > I need to do a great deal of time calcs , filters, and pivots - all on
    > > time
    > >
    > > I also need to calc betwen dates with ands with out time.
    > >
    > > Any suggestions on how to get this cleaned up into the best usable format
    > > would be great - I do not mind extra fields.
    > >
    > > thanks todd
    > >
    > >

    >
    >
    >


+ 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