That look suspiciously like my old code.
Anyway
![]()
Private Sub Worksheet_Change(ByVal Target As Range) Const WS_RANGE As String = "C4:V23" On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then With Target If IsNumeric(.Value) And .Value >= 0 Then .Value = (Int(.Value) + (.Value - Int(.Value)) * 100 / 60) / 24 .NumberFormat = "[h]:mm" End If End With End If ws_exit: Application.EnableEvents = True End Sub
Bookmarks