+ Reply to Thread
Results 1 to 6 of 6

custom cell format needed

Hybrid View

  1. #1
    Registered User
    Join Date
    11-26-2007
    Posts
    40

    custom cell format needed

    I have a custom format that I use on a daily basis.

    I right click the cell/cells, select Format, and choose custom. Under Type, I enter 0":"00. If the time is 4:50 PM, I enter 450 and the cell formats it to 4:50. It looks like time, but to excel, it is still four hundred fifty. This makes it difficult if I want to calculate an average time.

    Is there a way to create a custom cell format that when I enter 450, it formats it to time and 4:50. The spreadsheet is only used within a 12 hour basis, so AM and PM or military time is not necesarry.

    I tried h":"mm, but that did not work.

    Any ideas?

  2. #2
    Registered User
    Join Date
    09-03-2003
    Location
    UK
    Posts
    95
    Hi, have you tried hh:mm?

  3. #3
    Registered User
    Join Date
    11-26-2007
    Posts
    40
    I just tried that.

    When I entered 123, it came back as 00:00. I also tried hh":"mm, but it too came back 00:00.

  4. #4
    Registered User
    Join Date
    09-03-2003
    Location
    UK
    Posts
    95
    I'm not aware of a way to do what you are wanting. If you use the format I suggested and entered 4:50 in the cell, Excel will recognise that as a time and you can do your averages.

  5. #5
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229
    This UDF might do what you want.

    Put this in a normal module.
    Public Const functionName As String = "cellentry("
    
    Function CellEntry(Optional ByVal inputCell As Range) As String
    Rem returns the text last entered in the cell
    On Error Resume Next
    If inputCell Is Nothing Then Set inputCell = Application.Caller
    On Error GoTo 0
    If inputCell Is Nothing Then
        CellEntry = vbNullString
    Else
        With inputCell.Range("a1").Validation
            On Error Resume Next
            CellEntry = .InputMessage
            If .Parent.Address <> Application.Caller.Address Then Exit Function
            On Error GoTo 0
            .Delete
            .Add Type:=xlValidateCustom, AlertStyle:=xlValidAlertInformation, Formula1:="=(1=1)"
            .ErrorMessage = .Parent.FormulaR1C1
            .InputMessage = CellEntry
            .ShowInput = False
            .ShowError = False
        End With
    End If
    End Function
    and this in the ThisWorkbook code module.
    Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Excel.Range)
    Dim myRange As Range, oneCell As Range, xVal As Variant
    On Error Resume Next
    Set myRange = Target.SpecialCells(xlCellTypeAllValidation)
    On Error GoTo 0
    If myRange Is Nothing Then Exit Sub
    For Each oneCell In myRange
        With oneCell
            If .HasFormula Then
            Rem formula entered
                If InStr(LCase(.FormulaR1C1), functionName) = 0 Then
                    Rem non-ce formula entered, delete ce-Validation
                    .Validation.Delete
                Else
                    Rem new ce formula entered, update stored formula
                    xVal = CellEntry(oneCell)
                End If
            Else
            Rem text entered
                If Application.CutCopyMode Then
                    .Validation.Delete
                Else
                    If InStr(LCase(.Validation.ErrorMessage), functionName) = 0 Then
                        Rem cell has non-CE validation
                    Else
                        Rem set new value for CellEntry and replace formula in cell
                        .Validation.InputMessage = CStr(.Value)
                        Application.EnableEvents = False
                        .FormulaR1C1 = .Validation.ErrorMessage
                        Application.EnableEvents = True
                    End If
                End If
            End If
        End With
    Next oneCell
    End Sub
    CellEntry() returns the last text typed into the cell that calls the UDF CellEntry.

    To demonstrate:
    Enter =CellEntry() in a cell.
    Select that cell, it will look empty and =cellentry() will be in the formula bar
    Type "cat" and press Return.
    The cell will show "cat", but the formula bar will show =cellentry().
    Typing into the cell has set the return value of the CellEntry function to "cat".
    It is one way to have a cell hold both a formula and a value entered by the user.

    In your case, put
    =TIMEVALUE(MID("000"&cellentry(),LEN(cellentry()),2)&":"&RIGHT(cellentry(),2))
    in any cell.
    Entering 1123 will set the value of CellEntry to "1123", and after being evaluated by the formula, the value in the cell will be the serial time 11:23 AM (0.53125).

    Entering 930 puts 9:30 AM into the cell, which can be formatted to your taste.
    Entering 1458 puts 2:58 PM in the cell.
    Entering 035 returns 12:35 AM; 2435 - 12:35 AM tomorow

    This can be done with as many cells as you like.

    I hope this helps.
    Last edited by mikerickson; 01-26-2008 at 08:12 AM.
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  6. #6
    Registered User
    Join Date
    09-03-2003
    Location
    UK
    Posts
    95
    OK, I've spent some time playing with this and assuming that cell G5 was your input cell, put the following formula in another cell. This works for me and you can get the averages if you have more than one entry.

    =VALUE(IF(LEN(G5)=4,LEFT(G5,LEN(G5)-2)&":"&RIGHT(G5,2),LEFT(G5,LEN(G5)-2)&":"&RIGHT(G5,2)))

    Hope this helps

+ 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