+ Reply to Thread
Results 1 to 7 of 7

Converting numbers to 24 hour format

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    04-30-2013
    Location
    D.C.
    MS-Off Ver
    Excel 2010
    Posts
    192

    Converting numbers to 24 hour format

    Hello excellers,

    I am wondering how we could convert numbers to 24 hour time format as we key in the numbers?

    Example:
    As we key in 0815, it would automatically convert to 08:00.
    As we key in 1345, it would automatically convert to 13:45.

    What is the code we could use to put in the code of the sheet?

    Many thanks!

  2. #2
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Converting numbers to 24 hour format

    See this...

    http://www.cpearson.com/Excel/DateTimeEntry.htm
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  3. #3
    Forum Contributor
    Join Date
    04-30-2013
    Location
    D.C.
    MS-Off Ver
    Excel 2010
    Posts
    192

    Re: Converting numbers to 24 hour format

    popipipo, thank you for the help. I am looking for what Tony Valko just shared. It has to be VBA code rather than a formula.

    Thanks though!

  4. #4
    Forum Expert
    Join Date
    12-11-2011
    Location
    Netherlands
    MS-Off Ver
    office 365
    Posts
    3,654

    Re: Converting numbers to 24 hour format

    =TIME(LEFT(A1;2);RIGHT(A1;2);0)

    Try this one
    Willem
    English is not my native language sorry for errors
    Please correct me if I'm completely wrong

  5. #5
    Forum Contributor
    Join Date
    04-30-2013
    Location
    D.C.
    MS-Off Ver
    Excel 2010
    Posts
    192

    Re: Converting numbers to 24 hour format

    WoW!

    Perfect reference! This is exactly what I am looking for, Tony Valko.

    Many thanks!!!

    Marking this as SOLVED.

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Converting numbers to 24 hour format

    You're welcome. Thanks for the feedback!

  7. #7
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,887

    Re: Converting numbers to 24 hour format

    Hi Excellenthelp,

    The following Worksheet_Change event should suffice:
    Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    If Not Intersect(Target, Range("A:A")) Is Nothing Then _
        Target.Value = Format(TimeValue(Left(Target.Value, 2) & ":" & Right(Target.Value, 2)), "hh:mm")
        Application.EnableEvents = True
    End Sub
    Assumes you're entering values in column A.

    Hope that helps!

+ 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. [SOLVED] Converting a Total hour/min/sec from report - not converting to value with substitution
    By lechefox in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-01-2013, 08:07 AM
  2. [SOLVED] relative references? Converting half hour incriments into hour incriments
    By Babbabooie in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-07-2012, 11:27 AM
  3. Converting numbers into date format...
    By robbiebrown34 in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 08-13-2007, 11:46 AM
  4. [SOLVED] convert decimal numbers to a fraction of an hour for payroll hour
    By Flower in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 02-10-2006, 03:50 PM
  5. Converting time figures into 24-hour format & sorting them...
    By Clint Johnson in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-22-2005, 10:06 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